// // XPMineGameTableViewCell.h // xplan-ios // // Created by GreenLand on 2022/7/22. // #import NS_ASSUME_NONNULL_BEGIN @class LittleGameInfoModel, XPMineGameTableViewCell; @protocol XPMineGameTableViewCellDelegate ///选择了某个item - (void)xPMineGameTableViewCell:(XPMineGameTableViewCell *)cell didSelectItem:(LittleGameInfoModel *)item; @end @interface XPMineGameTableViewCell : UITableViewCell ///数据 @property (nonatomic,strong) NSArray *datasource; ///代理 @property (nonatomic,weak) id delegate; @end NS_ASSUME_NONNULL_END