2014-06-11 50 views
5

我試圖使用斯威夫特一個UIAlertController,與iOS 7,和我不斷收到時應該出現的警報以下錯誤:EXC_BAD_ACCESS(代碼= 1,地址= 0x10),以UIAlertController EXC_BAD_ACCESS錯誤 - 斯威夫特

這裏是警報的代碼。

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) 

回答

20

UIAlertController只可自的iOS 8.0。你應該仍然使用UIAlertView而不是

+0

Gaaaah ...我試圖使用的很多新功能,以便我的工作是最新的,但它們與iOS 7不兼容。= / – RanLearns