Skip to content

Instantly share code, notes, and snippets.

@rcerrejon
Created April 7, 2017 08:33
Show Gist options
  • Save rcerrejon/181654971d0579f104728d50211f1da6 to your computer and use it in GitHub Desktop.
Save rcerrejon/181654971d0579f104728d50211f1da6 to your computer and use it in GitHub Desktop.
Alert View with Ok Button
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