CSJFinishViewStyleModel.h 772 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // CSJFinishViewStyleModel.h
  3. // CSJAdSDK
  4. //
  5. // Created by ByteDance on 2022/6/21.
  6. //
  7. #import <Foundation/Foundation.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface CSJFinishViewStyleModel : NSObject
  10. @property (nonatomic, assign) NSInteger iconWidth;
  11. @property (nonatomic, assign) NSInteger labelWidth;
  12. @property (nonatomic, assign) NSInteger labelHeight;
  13. @property (nonatomic, assign) NSInteger buttonWidth;
  14. @property (nonatomic, assign) NSInteger buttonHeight;
  15. @property (nonatomic, assign) NSInteger labelButtonGap;
  16. @property (nonatomic, assign) NSInteger labelFontSize;
  17. @property (nonatomic, assign) NSInteger buttonFontSize;
  18. @property (nonatomic, assign) BOOL showButton;
  19. + (CSJFinishViewStyleModel *)styleModelWithFrame:(CGRect)frame;
  20. @end
  21. NS_ASSUME_NONNULL_END