请使用swift编写对话框
时间: 2023-03-02 18:57:07 浏览: 145
好的,以下是一个使用Swift编写对话框的示例代码:
```swift
// 创建一个UIAlertController对象
let alertController = UIAlertController(title: "标题", message: "消息内容", preferredStyle: .alert)
// 创建一个UIAlertAction对象,并为其指定处理程序
let okAction = UIAlertAction(title: "确定", style: .default) { (action) in
// 在确定按钮被点击后执行的代码
}
// 将UIAlertAction对象添加到UIAlertController对象中
alertController.addAction(okAction)
// 呈现UIAlertController对象
self.present(alertController, animated: true, completion: nil)
```
在这个示例中,我们创建了一个名为`alertController`的`UIAlertController`对象,并向其中添加了一个名为`okAction`的`UIAlertAction`对象。然后,我们将`okAction`添加到`alertController`中,并调用`present(_:animated:completion:)`方法来呈现对话框。
当用户点击“确定”按钮时,`okAction`中指定的处理程序将被执行。您可以在这个处理程序中添加您希望执行的代码,例如更新UI元素或执行其他操作。
阅读全文