UIAlertController在iPhone 5s / s 8.4上是透明的,在iPhone 5s / s 9.3上崩溃

时间:2016-07-22 22:24:12

标签: swift uialertcontroller ios9.3 ios8.4

任何人都可以对此有所了解。我有一个简单的代码,无法正常工作。 UIAlertController在iPhone 5s / s 8.4上是透明的,它在iPhone 5s / s 9.3上崩溃。代码如下:

    let alert = UIAlertController(title: "title", message:"message" , preferredStyle: UIAlertControllerStyle.Alert)
    let action = UIAlertAction(title: "Close", style: UIAlertActionStyle.Default, handler: nil)
    alert.addAction(action)
    self.presentViewController(alert, animated: true, completion: nil)

崩溃消息:由于未捕获的异常'NSInternalInconsistencyException'而终止应用程序,原因:'UIAlertController在转换期间应具有视觉样式'

0 个答案:

没有答案