CustomizedMessageHelper

public final class CustomizedMessageHelper : PopupView
extension CustomizedMessageHelper: MessageHelper

CustomizedMessageHelper is used to display a customized message on the screen.

Author

Adamas

Version

1.5.0

Date

05/09/2019
  • MessageHelper

    Declaration

    Swift

    public weak var delegate: MessageHelperDelegate?
  • The mask color.

    Declaration

    Swift

    public var maskColor: UIColor? { get set }
  • The background color of the message frame.

    Declaration

    Swift

    public var frameColor: UIColor? { get set }
  • Initialize the object

    Declaration

    Swift

    public init()
  • Undocumented

    Declaration

    Swift

    public required init?(coder aDecoder: NSCoder)
  • Declaration

    Swift

    public func showInfo(_ content: String,
                         withTitle title: String = successTitle,
                         withConfirmButtonName confirmButtonName: String = infoConfirmButtonName)
  • Declaration

    Swift

    public func showWarning(_ content: String,
                            withTitle title: String = warningTitle,
                            withConfirmButtonName confirmButtonName: String = warningConfirmButtonName,
                            withCancelButtonName cancelButtonName: String = warningCancelButtonName)
  • Declaration

    Swift

    public func showError(_ content: String,
                          withTitle title: String = errorTitle,
                          withConfirmButtonName confirmButtonName: String = errorConfirmButtonName)
  • Declaration

    Swift

    public func showInput(withTitle title: String,
                          withConfirmButtonName confirmButtonName: String = inputConfirmButtonName,
                          withCancelButtonName cancelButtonName: String = inputCancelButtonName)