ASGoodsDetailsSizeSelView.h 968 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. //
  2. // ASGoodsDetailsSizeSelView.h
  3. // westkissMob
  4. //
  5. // Created by iOS on 2024/5/19.
  6. //
  7. #import <UIKit/UIKit.h>
  8. #import "GoodsInformationM.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface ASGoodsDetailsSizeSelView : UICollectionView
  11. @property (nonatomic, assign) NSInteger num;
  12. @property (nonatomic, copy) void(^reloadPrice)(void);
  13. @property (nonatomic, copy) void(^reloadHeight)(CGFloat h);
  14. @property (nonatomic, strong) NSArray<OptionsModel *> *optionArr;
  15. @property (nonatomic, copy) NSString *tipStr;
  16. @end
  17. @interface APProductDetailSizeCell : UICollectionViewCell
  18. - (void)setData:(OptionsValuesM *)m;
  19. - (void)setSelType:(BOOL)isSel isCat:(BOOL)isCat;
  20. - (void)setTip:(NSString *)tipStr;
  21. @end
  22. @interface APProductDetailNumStepCell : UICollectionViewCell
  23. @property (nonatomic, copy) void(^numBlock)(NSString *num);
  24. @end
  25. @interface APProductDetailSizeHeadV : UICollectionReusableView
  26. @property (nonatomic, strong) UILabel *titleLb;
  27. @end
  28. NS_ASSUME_NONNULL_END