UIAlertController EXC_BAD_ACCESS错误 - Swift

时间:2014-06-11 14:00:11

标签: ios swift uialertcontroller

我正在尝试在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)

1 个答案:

答案 0 :(得分:20)

UIAlertController仅在 iOS 8.0 后可用。您仍应使用UIAlertView代替