UIAlertViewController在模拟器中慢速动画后没有响应

时间:2016-01-21 05:25:13

标签: ios objective-c swift ios-simulator xcode7

我今天正在使用xcode 7.2我注意到在模拟器中有非常奇怪的行为。无论何时我在模拟器上使用UIAlertViewControllerActionSheet类型defaultSimulator slow-motion animations on)模式打开⌘ + T,然后在应用程序无响应的某个时间后,我无法用户活动几秒钟(大约20秒)。我使用Swift作为参考的问题是什么,您可以使用以下UIAlertViewController

代码创建演示
@IBAction func alertShow(){
    let alertController = UIAlertController(title: "Title", message: "Message", preferredStyle: .Alert)
    alertController.addAction(UIAlertAction(title: "OK", style: .Default, handler: nil))

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

1 个答案:

答案 0 :(得分:0)

尝试先分配UIAlertController让我们说在viewdidload中,在你的IBAction函数中使用该对象,与我合作