我今天正在使用xcode 7.2我注意到在模拟器中有非常奇怪的行为。无论何时我在模拟器上使用UIAlertViewController
或ActionSheet
类型default
(Simulator 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)
}
答案 0 :(得分:0)
尝试先分配UIAlertController让我们说在viewdidload中,在你的IBAction函数中使用该对象,与我合作