Created
April 7, 2017 08:33
-
-
Save rcerrejon/181654971d0579f104728d50211f1da6 to your computer and use it in GitHub Desktop.
Alert View with Ok Button
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let alert = UIAlertController(title: "Error", message: "Please, fill the Form", preferredStyle: .alert) | |
alert.addAction(UIAlertAction(title: "Ok", style: .default)) | |
self.present(alert, animated: true, completion: nil) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment