FUBeautyShapeView.h 798 B

12345678910111213141516171819202122232425262728293031323334353637
  1. //
  2. // FUBeautyShapeView.h
  3. // FUBeautyComponent
  4. //
  5. // Created by 项林平 on 2022/7/8.
  6. //
  7. #import <UIKit/UIKit.h>
  8. #import "FUBeautyShapeViewModel.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface FUBeautyShapeView : UIView
  11. - (instancetype)initWithFrame:(CGRect)frame viewModel:(FUBeautyShapeViewModel *)viewModel;
  12. @end
  13. @interface FUBeautyShapeCell : UICollectionViewCell
  14. @property (nonatomic, strong, readonly) UIImageView *imageView;
  15. @property (nonatomic, strong, readonly) UILabel *textLabel;
  16. /// 是否允许选择
  17. @property (nonatomic, assign) BOOL disabled;
  18. @property (nonatomic, assign) BOOL defaultInMiddle;
  19. @property (nonatomic, assign) double currentValue;
  20. @property (nonatomic, assign) double defaultValue;
  21. @property (nonatomic, copy) NSString *imageName;
  22. @end
  23. NS_ASSUME_NONNULL_END