Skip to content

Instantly share code, notes, and snippets.

@timelincoln7648
Created January 10, 2020 22:13
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/616ed2383a3a50c0a44b51ad5115cc6c to your computer and use it in GitHub Desktop.
Save timelincoln7648/616ed2383a3a50c0a44b51ad5115cc6c to your computer and use it in GitHub Desktop.
button function
@IBAction func showMessage(sender: UIButton) {
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