为什么我的xcode中self alertviewwithtitle会报错
时间: 2024-03-20 08:43:36 浏览: 133
XCode 15.3 编译私有库 报错问题
`self alertviewwithtitle` 会报错是因为 `alertviewwithtitle` 并不是 `UIViewController` 或其子类中的一个有效方法。
如果你想在 `UIViewController` 中显示一个弹出框,你可以使用 `UIAlertController` 或者 `UIAlertView`(iOS 9 及更早版本可用)。
例如,下面是一个使用 `UIAlertController` 的示例代码:
```swift
let alertController = UIAlertController(title: "提示", message: "这是一个示例弹出框", preferredStyle: .alert)
let okAction = UIAlertAction(title: "确定", style: .default, handler: nil)
alertController.addAction(okAction)
present(alertController, animated: true, completion: nil)
```
这将在当前的 `UIViewController` 中显示一个带有标题和消息的弹出框,并包含一个“确定”按钮。
阅读全文