28 lines
557 B
C
28 lines
557 B
C
|
|
//
|
|||
|
|
// HomeRankCardCell.h
|
|||
|
|
// keyBoard
|
|||
|
|
//
|
|||
|
|
// Created by Codex on 2025/11/06.
|
|||
|
|
//
|
|||
|
|
|
|||
|
|
#import <UIKit/UIKit.h>
|
|||
|
|
|
|||
|
|
NS_ASSUME_NONNULL_BEGIN
|
|||
|
|
|
|||
|
|
/// 首页排行榜卡片 Cell(两列)
|
|||
|
|
@interface HomeRankCardCell : UICollectionViewCell
|
|||
|
|
|
|||
|
|
/// 点击加号/勾选按钮回调
|
|||
|
|
@property (nonatomic, copy, nullable) void (^onTapAction)(void);
|
|||
|
|
|
|||
|
|
/// 统一配置数据
|
|||
|
|
- (void)configureWithTitle:(NSString *)title
|
|||
|
|
desc:(NSString *)desc
|
|||
|
|
people:(NSString *)people
|
|||
|
|
added:(BOOL)added;
|
|||
|
|
|
|||
|
|
@end
|
|||
|
|
|
|||
|
|
NS_ASSUME_NONNULL_END
|
|||
|
|
|