UAInAppMessageFullScreenStyle
Objective-C
@interface UAInAppMessageFullScreenStyle
: NSObject <UAInAppMessageStyleProtocol>
Swift
class InAppMessageFullScreenStyle : NSObject, InAppMessageStyleProtocol
Model object representing a custom style to be applied to full screen in-app message.
-
The dismiss icon image resource name.
Declaration
Objective-C
@property (nonatomic, strong, nullable) NSString *dismissIconResource;
Swift
var dismissIconResource: String? { get set }
-
The header text style
Declaration
Objective-C
@property (nonatomic, strong, nullable) UAInAppMessageTextStyle *headerStyle;
Swift
var headerStyle: InAppMessageTextStyle? { get set }
-
The body text style
Declaration
Objective-C
@property (nonatomic, strong, nullable) UAInAppMessageTextStyle *bodyStyle;
Swift
var bodyStyle: InAppMessageTextStyle? { get set }
-
The button style
Declaration
Objective-C
@property (nonatomic, strong, nullable) UAInAppMessageButtonStyle *buttonStyle;
Swift
var buttonStyle: InAppMessageButtonStyle? { get set }
-
The media style
Declaration
Objective-C
@property (nonatomic, strong, nullable) UAInAppMessageMediaStyle *mediaStyle;
Swift
var mediaStyle: InAppMessageMediaStyle? { get set }