CSJSplashTextConfigureModel.h 529 B

123456789101112131415161718192021
  1. //
  2. // CSJSplashTextConfigureModel.h
  3. // CSJAdSDK
  4. //
  5. // Created by bytedance on 2021/7/5.
  6. //
  7. #import <Foundation/Foundation.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. /// 开屏合规底部按钮文字样式
  10. @interface CSJSplashTextConfigureModel : NSObject<NSCoding>
  11. @property (nonatomic, assign) NSInteger font_size;
  12. /// 文字样式配置
  13. /// @param configure 服务端配置
  14. /// @param fontSize 默认字体大小
  15. - (instancetype)initWithConfigure:(NSDictionary *)configure defaultFontSize:(CGFloat)fontSize;
  16. @end
  17. NS_ASSUME_NONNULL_END