1 2 3 4 5 |
@IBAction func onTap(_ sender: Any) { let alertController = UIAlertController(title: "Hello", message: "tapped", preferredStyle: .alert) alertController.addAction(UIAlertAction(title: "OK", style: .default, handler: nil)) present(alertController, animated: true, completion: nil) } |