AlertView
public class AlertView : ViewWrapper of UIAlertController An object that displays an alert message to the user.
         AlertView(title: "Title", message: "Message", preferredStyle: UIAlertController.Style.alert)
         .destructive(title: "Delete") { text in
             // delete action
         }
         .cancel(title: "Cancel") {
             // cancel action
         }
         .show()
- 
                  
                  The node behind the alert view. DeclarationSwift public var node: ArgoKitNode? { get }
- 
                  
                  Initializer DeclarationSwift public init(title: String? = "", message: String? = "", preferredStyle: UIAlertController.Style)ParameterstitleThe title of the alert. Use this string to get the user’s attention and communicate the reason for the alert. messageDescriptive text that provides additional details about the reason for the alert. preferredStyleThe style to use when presenting the alert controller. Use this parameter to configure the alert controller as an action sheet or as a modal alert. 
- 
                  
                  Sets the title of the alert. DeclarationSwift @discardableResult public func titile(_ value: @autoclosure @escaping () -> String?) -> SelfParametersvalueThe title of the alert. Use this string to get the user’s attention and communicate the reason for the alert. Return Valueself 
- 
                  
                  Sets descriptive text that provides additional details about the reason for the alert. DeclarationSwift @discardableResult public func message(_ value: @autoclosure @escaping () -> String?) -> SelfParametersvalueDescriptive text that provides additional details about the reason for the alert. Return Valueself 
- 
                  
                  Add default style Action. DeclarationSwift @discardableResult public func `default`(title: String?, handler: ((String?) -> Void)?) -> SelfParameterstitleThe text to use for the button title. The value you specify should be localized for the user’s current language. handlerA block to execute when the user selects the action. This block has no return value and takes the selected action object as its only parameter. Return Valueself 
- 
                  
                  Add cancel style Action. DeclarationSwift @discardableResult public func cancel(title: String?, handler: (() -> Void)?) -> SelfParameterstitleThe text to use for the button title. The value you specify should be localized for the user’s current language. handlerA block to execute when the user selects the action. This block has no return value and takes the selected action object as its only parameter. Return Valueself 
- 
                  
                  Add destructive style Action. DeclarationSwift @discardableResult public func destructive(title: String?, handler: ((String?) -> Void)?) -> SelfParameterstitleThe text to use for the button title. The value you specify should be localized for the user’s current language. handlerA block to execute when the user selects the action. This block has no return value and takes the selected action object as its only parameter. Return Valueself 
- 
                  
                  Add TextField. DeclarationSwift @discardableResult public func textField() -> SelfReturn Valueself 
- 
                  
                  Present alert view DeclarationSwift public func show()
 AlertView Class Reference
      AlertView Class Reference