| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 | 
							- //
 
- //  ASGoodsDetailsSizeSelView.h
 
- //  westkissMob
 
- //
 
- //  Created by iOS on 2024/5/19.
 
- //
 
- #import <UIKit/UIKit.h>
 
- #import "GoodsInformationM.h"
 
- NS_ASSUME_NONNULL_BEGIN
 
- @interface ASGoodsDetailsSizeSelView : UICollectionView
 
- @property (nonatomic, assign) NSInteger num;
 
- @property (nonatomic, copy) void(^reloadPrice)(void);
 
- @property (nonatomic, copy) void(^reloadHeight)(CGFloat h);
 
- @property (nonatomic, strong) NSArray<OptionsModel *> *optionArr;
 
- @property (nonatomic, copy) NSString *tipStr;
 
- @end
 
- @interface APProductDetailSizeCell : UICollectionViewCell
 
- - (void)setData:(OptionsValuesM *)m;
 
- - (void)setSelType:(BOOL)isSel isCat:(BOOL)isCat;
 
- - (void)setTip:(NSString *)tipStr;
 
- @end
 
- @interface APProductDetailNumStepCell : UICollectionViewCell
 
- @property (nonatomic, copy) void(^numBlock)(NSString *num);
 
- @end
 
- @interface APProductDetailSizeHeadV : UICollectionReusableView
 
- @property (nonatomic, strong) UILabel *titleLb;
 
- @end
 
- NS_ASSUME_NONNULL_END
 
 
  |