2025-11-11 14:38:38 +08:00
|
|
|
|
//
|
|
|
|
|
|
// HomeRankDetailPopView.h
|
|
|
|
|
|
// keyBoard
|
|
|
|
|
|
//
|
|
|
|
|
|
// Created by Codex on 2025/11/11.
|
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
2025-12-04 20:04:02 +08:00
|
|
|
|
#import "KBCharacter.h"
|
2025-11-11 14:38:38 +08:00
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
|
|
|
|
|
|
|
|
/// 排行榜详情弹窗的自定义内容视图(给 LSTPopView 使用)
|
|
|
|
|
|
@interface HomeRankDetailPopView : UIView
|
|
|
|
|
|
|
|
|
|
|
|
/// 保存按钮点击回调
|
|
|
|
|
|
@property (nonatomic, copy, nullable) void (^saveHandler)(void);
|
|
|
|
|
|
/// 关闭按钮点击回调(底部圆形 X)
|
|
|
|
|
|
@property (nonatomic, copy, nullable) void (^closeHandler)(void);
|
|
|
|
|
|
|
2025-12-04 20:04:02 +08:00
|
|
|
|
///// 配置数据
|
|
|
|
|
|
//- (void)configWithAvatar:(UIImage *_Nullable)avatar
|
|
|
|
|
|
// title:(NSString *)title
|
|
|
|
|
|
// download:(NSString *)download
|
|
|
|
|
|
// desc:(NSString *)desc;
|
|
|
|
|
|
@property (nonatomic, strong) KBCharacter *character;
|
2025-11-11 14:38:38 +08:00
|
|
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|
|
|
|
|
|
|