123456789101112131415161718192021222324252627 |
- //
- // HWPageListCell.h
- // Private-X
- //
- // Created by 余衡武 on 2022/3/22.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @protocol HWPageListCellDelegate <NSObject>
- - (void)deleteBtnClickWithModel:(BaseModel *)model;
- @end
- @interface HWPageListCell : UICollectionViewCell
- @property (nonatomic,strong) BaseModel *model;
- @property (nonatomic,weak) id<HWPageListCellDelegate> delegate;
- @end
- NS_ASSUME_NONNULL_END
|