在我的视图控制器中,我有以下代码来创建UIAlertController
:
var avc = UIAlertController(title: "Location", message: "Please Enter A Location", preferredStyle: UIAlertControllerStyle.Alert)
self.navigationController!.presentViewController(avc, animated: true, completion: nil)
在模拟器中运行它,我看到了
很确定这是Xcode 6 beta 7或swift中的一个错误?想法?
答案 0 :(得分:4)
找到答案,我应该向UIAlertController
添加一个动作,以便显示消息:
alert.addAction(UIAlertAction(title: "OK", style: UIAlertActionStyle.Default, handler: nil))