MimiAlert
public class MimiAlert : NSObject
Object describing an alert to show.
-
Title describing the alert.
Declaration
Swift
public let title: String? -
Message describing the alert details.
Declaration
Swift
public let message: String? -
Image to provide alert context.
Declaration
Swift
public let image: UIImage? -
Collection of actions for the alert.
Declaration
Swift
public let actions: [MimiAlertAction] -
Accessibility identifier for the alert view
Declaration
Swift
public var accessibilityId: String?
-
Create a new alert.
Declaration
Swift
public init(title: String?, message: String?, image: UIImage? = nil, actions: [MimiAlertAction]?)Parameters
titleTitle describing the alert.
messageMessage describing the alert details.
imageImage to provide alert context.
actionsCollection of actions for the alert.
MimiAlert Class Reference