STPThreeDSFooterCustomization
Objective-C
@interface STPThreeDSFooterCustomization : NSObject
Swift
class STPThreeDSFooterCustomization : NSObject
The Challenge view displays a footer with additional details that expand when tapped. This object configures the appearance of that view.
-
The default settings.
Declaration
Objective-C
+ (nonnull instancetype)defaultSettings;
Swift
class func defaultSettings() -> Self
-
The background color of the footer. Defaults to gray.
Declaration
Objective-C
@property (nonatomic, strong) UIColor *_Nonnull backgroundColor;
Swift
var backgroundColor: UIColor { get set }
-
The color of the chevron. Defaults to a dark gray.
Declaration
Objective-C
@property (nonatomic, strong) UIColor *_Nonnull chevronColor;
Swift
var chevronColor: UIColor { get set }
-
The color of the heading text. Defaults to black.
Declaration
Objective-C
@property (nonatomic, strong) UIColor *_Nonnull headingTextColor;
Swift
var headingTextColor: UIColor { get set }
-
The font to use for the heading text.
Declaration
Objective-C
@property (nonatomic, strong) UIFont *_Nonnull headingFont;
Swift
var headingFont: UIFont { get set }
-
The font of the text.
Declaration
Objective-C
@property (nonatomic, strong) UIFont *_Nonnull font;
Swift
var font: UIFont { get set }
-
The color of the text.
Declaration
Objective-C
@property (nonatomic, strong) UIColor *_Nonnull textColor;
Swift
var textColor: UIColor { get set }