2025-11-08 21:44:41 +08:00
|
|
|
//
|
|
|
|
|
// MySkinCell.h
|
|
|
|
|
// keyBoard
|
|
|
|
|
//
|
|
|
|
|
// 我的皮肤 - 列表 cell。编辑态显示选择圆点。
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
|
|
|
|
|
|
@interface MySkinCell : UICollectionViewCell
|
|
|
|
|
/// 是否处于编辑态(显示左上角选择圆点)
|
|
|
|
|
@property (nonatomic, assign, getter=isEditing) BOOL editing;
|
|
|
|
|
|
2025-12-11 19:43:55 +08:00
|
|
|
/// 配置显示内容(标题 + 远程预览图)
|
|
|
|
|
- (void)configWithTitle:(NSString *)title imageURL:(nullable NSString *)imageURL;
|
2025-11-08 21:44:41 +08:00
|
|
|
|
|
|
|
|
/// 根据选中状态刷新打勾样式(供外部在 select/deselect 时调用)
|
|
|
|
|
- (void)updateSelected:(BOOL)selected;
|
|
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|