2014-08-29 152 views
0

我剛剛將部署目標從iOS 8更改爲7,因此我第一次在iOS 7上測試了我的應用程序。顯示UIAlertController時應用程序崩潰

我在調用UIAlertController時遇到了崩潰我的應用程序的問題。它適用於iOS 8精絕然不工作在iOS 7

在這裏,在所有是我使用的代碼:

@IBAction func resetAllButton(sender : AnyObject) { 
    var alert = UIAlertController(title: "Start Over", message: "Are you sure you want to start over? This will erase your budget and all transactions.", preferredStyle: UIAlertControllerStyle.Alert) 
    alert.addAction(UIAlertAction(title: "I'm sure!", style: UIAlertActionStyle.Default, handler:{ (ACTION :UIAlertAction!)in 
     self.resetView() 
     })) 
    alert.addAction(UIAlertAction(title: "Cancel", style: UIAlertActionStyle.Cancel, handler: nil)) 

    self.presentViewController(alert, animated: true, completion: nil) 
} 

回答

2

UIAlertController僅在iOS 8或更高版本中提供。您需要使用UIAlertView才能在iOS 7上顯示警報。

相關問題