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)
}