25 lines
539 B
Objective-C
25 lines
539 B
Objective-C
//
|
||
// HomeRankCardCell.h
|
||
// keyBoard
|
||
//
|
||
// Created by Codex on 2025/11/06.
|
||
//
|
||
|
||
#import <UIKit/UIKit.h>
|
||
#import "KBCharacter.h"
|
||
|
||
NS_ASSUME_NONNULL_BEGIN
|
||
|
||
/// 首页排行榜卡片 Cell(两列)
|
||
@interface HomeRankCardCell : UICollectionViewCell
|
||
|
||
/// 当前展示的角色模型(设置后,cell 会在 setter 中根据模型刷新 UI)
|
||
@property (nonatomic, strong, nullable) KBCharacter *character;
|
||
|
||
/// 点击加号/勾选按钮回调
|
||
@property (nonatomic, copy, nullable) void (^onTapAction)(void);
|
||
|
||
@end
|
||
|
||
NS_ASSUME_NONNULL_END
|