-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Labels
Description
public func showAlert(message: String, title: String? = nil, okHandler: ((UIAlertAction) -> Void)? = nil) {
let alert = UIAlertController(title: title, message: message, preferredStyle: .Alert)
alert.addAction(UIAlertAction(title: "Ok", style: .Default, handler: okHandler))
presentViewController(alert, animated: true, completion: nil)
}