// // XPHomeAttentionTableViewCell.h // xplan-ios // // Created by 冯硕 on 2022/3/2. // #import NS_ASSUME_NONNULL_BEGIN @class XPHomeAttentionTableViewCell, HomeLiveRoomModel; @protocol XPHomeAttentionTableViewCellDelegate ///点击了某个item - (void)xPHomeAttentionTableViewCell:(XPHomeAttentionTableViewCell *)view didClickItem:(HomeLiveRoomModel *)model; @end @interface XPHomeAttentionTableViewCell : UITableViewCell @property (nonatomic,strong) NSArray *attentionList; ///代理 @property (nonatomic,weak) id delegate; @end NS_ASSUME_NONNULL_END