diff --git a/ALRT/ALRT.swift b/ALRT/ALRT.swift index f53966a..cf1cf06 100644 --- a/ALRT/ALRT.swift +++ b/ALRT/ALRT.swift @@ -11,6 +11,16 @@ public class ALRT { public var tintColor: UIColor? public var okTitle: String? public var cancelTitle: String? + + public init( + tintColor: UIColor?, + okTitle: String?, + cancelTitle: String? + ) { + self.tintColor = tintColor + self.okTitle = okTitle + self.cancelTitle = cancelTitle + } } /**