如何在 iOS 中显示弹窗对话框?
如果你正在设计任何 iOS 应用程序,知道如何处理弹窗非常重要。我们将重点介绍如何使用 UIAlertController 显示弹窗。
要详细了解 UIAlertController,请参阅 − https://developer.apple.com/documentation/uikit/uialertcontroller
在此,我们将创建一个新项目,其中有一个按钮,轻触该按钮,我们将显示带有自定义消息的弹窗。
第 1 步 − 打开 Xcode → 新项目 → 单视图应用程序 → 让我们将其命名为“弹窗”
第 2 步 − 打开 Main.storyboard 并添加一个按钮并将其命名为 tap。在 ViewController.swit 中创建该按钮的 @IBAction 并将其命名为 tap。
显示弹窗有 3 个步骤。首先是从 UIAlertController 创建弹窗对象。其次,对弹窗对象添加操作,最后,显示弹窗对象。
第 3 步 − 在 tap 按钮的 @IBAction 下,在你的按钮实例中添加以下代码。
@IBAction func tap(_ sender: Any) { let uialert = UIAlertController(title: "Welcome", message: "Welcome to my channel. Thanks for watching. Click on Okay to continue", preferredStyle: UIAlertController.Style.alert) uialert.addAction(UIAlertAction(title: "Okay", style: UIAlertAction.Style.default, handler: nil)) self.present(uialert, animated: true, completion: nil) }
第 4 步 − 运行代码。
广告