Skip to content

Instantly share code, notes, and snippets.

@davut
Created September 27, 2018 18:29
Show Gist options
  • Save davut/80bbd6023e295f0938410c9272138507 to your computer and use it in GitHub Desktop.
Save davut/80bbd6023e295f0938410c9272138507 to your computer and use it in GitHub Desktop.
func myAlertVC() {
let alertController = UIAlertController(title: "Hello!", message: "Wazzup?", preferredStyle: .alert)
let action = UIAlertAction(title: "OK", style: .default, handler: nil)
alertController.addAction(action)
present(alertController, animated: true, completion: nil)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment