UAInAppMessageStyleProtocol
Objective-C
@protocol UAInAppMessageStyleProtocol <NSObject>
Swift
protocol InAppMessageStyleProtocol : NSObjectProtocol
The in-app message style protocol.
-
Factory method to create a style.
Declaration
Objective-C
+ (nonnull instancetype)style;
Swift
static func style() -> Self
-
Factory method to create a style from a provided plist.
Declaration
Objective-C
+ (nullable instancetype)styleWithContentsOfFile:(nullable NSString *)path;
Swift
static func style(withContentsOfFile path: String?) -> Self?