ShoesCollectionCell.h 627 B

12345678910111213141516171819202122232425262728
  1. //
  2. // ShoesCollectionCell.h
  3. // Unity-iPhone
  4. //
  5. // Created by duowan123 on 2021/8/31.
  6. //
  7. #import <UIKit/UIKit.h>
  8. #import "ShoesPeripheralMolde.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface ShoesCollectionCell : UICollectionViewCell
  11. @property (weak, nonatomic) IBOutlet UIView *covierView;
  12. @property (weak, nonatomic) IBOutlet UILabel *stateLable;
  13. @property (assign, nonatomic) BOOL cusSelected;
  14. @property(nonatomic,strong)ShoesPeripheralMolde * model;
  15. -(void)setCarouselCellModel:(ShoesPeripheralMolde *)model;
  16. //点击cell回调block
  17. @property(nonatomic,copy)void(^tapGestureBlock)(NSInteger i);
  18. @end
  19. NS_ASSUME_NONNULL_END