Created
January 31, 2021 01:45
-
-
Save cafielo/853ade9e156311a6fe4bd58199cfc8db to your computer and use it in GitHub Desktop.
General UIAlertController Presenting
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let alertController = UIAlertController(title: nil, message: "Alert message.", preferredStyle: .actionSheet) | |
let defaultAction = UIAlertAction(title: "Default", style: .default, handler: { (alert: UIAlertAction!) -> Void in | |
// Do some action here. | |
}) | |
let deleteAction = UIAlertAction(title: "Delete", style: .destructive, handler: { (alert: UIAlertAction!) -> Void in | |
// Do some destructive action here. | |
}) | |
let cancelAction = UIAlertAction(title: "Cancel", style: .cancel, handler: { (alert: UIAlertAction!) -> Void in | |
// Do something here upon cancellation. | |
}) | |
alertController.addAction(defaultAction) | |
alertController.addAction(deleteAction) | |
alertController.addAction(cancelAction) | |
self.present(alertController, animated: true, completion: nil) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment