Skip to content

Instantly share code, notes, and snippets.

@timelincoln7648
Created January 17, 2020 21:29
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/8eae01c9ce1bfcbfdca622fc7d808709 to your computer and use it in GitHub Desktop.
Save timelincoln7648/8eae01c9ce1bfcbfdca622fc7d808709 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)
var enabled = false
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