SCAdViewConfiguration

@interface SCAdViewConfiguration : NSObject

Small data class, can be used to configure the adView

  • Color to customize the adTitle

    Declaration

    Objective-C

    @property (nonatomic, strong) UIColor *_Nonnull customTextColor;
  • Text to be displayed in the adTitle label

    Declaration

    Objective-C

    @property (nonatomic, copy) NSString *_Nonnull customTitle;
  • Customize the color of the progressbar

    Declaration

    Objective-C

    @property (nonatomic, strong) UIColor *_Nonnull customProgressBarColor;
  • Initialize this class with your custom values

    Declaration

    Objective-C

    - (nonnull instancetype)initWithCustomTextColor:(nonnull UIColor *)textColor
                                        customTitle:(nonnull NSString *)title
                             customProgressBarColor:
                                 (nonnull UIColor *)customProgressBarColor;