// // HWPageListCell.h // // // Created by yhw on 2022/3/22. // #import NS_ASSUME_NONNULL_BEGIN @protocol HWPageListCellDelegate - (void)deleteBtnClickWithModel:(BaseModel *)model; @end @interface HWPageListCell : UICollectionViewCell @property (nonatomic,strong) BaseModel *model; @property (nonatomic,weak) id delegate; @end NS_ASSUME_NONNULL_END