Skip to content

Instantly share code, notes, and snippets.

@timelincoln7648
Created January 17, 2020 21:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save timelincoln7648/c0a5406cbcbd9c2e97c052ccab006567 to your computer and use it in GitHub Desktop.
Save timelincoln7648/c0a5406cbcbd9c2e97c052ccab006567 to your computer and use it in GitHub Desktop.
button function
@IBAction func showMessage(sender: UIButton) {
var enabled = false
let alertController = UIAlertController(title: "Alert", message: enabled ? "Hello World!" : "Nothing to see here...", preferredStyle: UIAlertController.Style.alert)
if enabled {
alertController.addAction(UIAlertAction(title: "Hello!", style: UIAlertAction.Style.default, handler: nil))
} else {
alertController.addAction(UIAlertAction(title: "Ok", style: UIAlertAction.Style.default, handler: nil))
}
present(alertController, animated: true, completion: nil)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment