HWPageListCell.h 429 B

123456789101112131415161718192021222324252627
  1. //
  2. // HWPageListCell.h
  3. // Private-X
  4. //
  5. // Created by 余衡武 on 2022/3/22.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @protocol HWPageListCellDelegate <NSObject>
  10. - (void)deleteBtnClickWithModel:(BaseModel *)model;
  11. @end
  12. @interface HWPageListCell : UICollectionViewCell
  13. @property (nonatomic,strong) BaseModel *model;
  14. @property (nonatomic,weak) id<HWPageListCellDelegate> delegate;
  15. @end
  16. NS_ASSUME_NONNULL_END