FUBeautySkinView.h 750 B

123456789101112131415161718192021222324252627282930313233343536
  1. //
  2. // FUBeautySkinView.h
  3. // FUBeautyComponent
  4. //
  5. // Created by 项林平 on 2022/6/21.
  6. //
  7. // 美肤&美型视图
  8. #import <UIKit/UIKit.h>
  9. #import "FUBeautySkinViewModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface FUBeautySkinView : UIView
  12. - (instancetype)initWithFrame:(CGRect)frame viewModel:(FUBeautySkinViewModel *)viewModel;
  13. @end
  14. @interface FUBeautySkinCell : UICollectionViewCell
  15. @property (nonatomic, strong, readonly) UIImageView *imageView;
  16. @property (nonatomic, strong, readonly) UILabel *textLabel;
  17. @property (nonatomic, assign) BOOL defaultInMiddle;
  18. @property (nonatomic, assign) double currentValue;
  19. @property (nonatomic, assign) double defaultValue;
  20. @property (nonatomic, copy) NSString *imageName;
  21. @end
  22. NS_ASSUME_NONNULL_END