5

我正在尝试在 iOS 7 中使用 Swift 中的 UIAlertController,当出现警报时,我不断收到以下错误:EXC_BAD_ACCESS (code = 1, address = 0x10)

这是警报的代码。

var alert:UIAlertController = UIAlertController(title: "Ooops", message: "Please Fill In Everything", preferredStyle: UIAlertControllerStyle.Alert)
        alert.addAction(UIAlertAction(title: "OK", style: UIAlertActionStyle.Default, handler: nil))
        self.presentViewController(alert, animated: true, completion: nil)
4

1 回答 1

20

UIAlertController仅从iOS 8.0开始可用。您仍然应该UIAlertView使用

于 2014-06-11T14:02:16.647 回答