12345678910111213141516171819202122232425262728 |
- //
- // ShoesCollectionCell.h
- // Unity-iPhone
- //
- // Created by duowan123 on 2021/8/31.
- //
- #import <UIKit/UIKit.h>
- #import "ShoesPeripheralMolde.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface ShoesCollectionCell : UICollectionViewCell
- @property (weak, nonatomic) IBOutlet UIView *covierView;
- @property (weak, nonatomic) IBOutlet UILabel *stateLable;
- @property (assign, nonatomic) BOOL cusSelected;
- @property(nonatomic,strong)ShoesPeripheralMolde * model;
- -(void)setCarouselCellModel:(ShoesPeripheralMolde *)model;
- //点击cell回调block
- @property(nonatomic,copy)void(^tapGestureBlock)(NSInteger i);
- @end
- NS_ASSUME_NONNULL_END
|