Skip to content

Instantly share code, notes, and snippets.

View davut's full-sized avatar

Davut Jepbarov davut

View GitHub Profile
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)