Xcode 6或iOS 8错误:UIAlertController不显示消息?

时间:2014-09-07 17:35:40

标签: swift ios8 uialertcontroller

在我的视图控制器中,我有以下代码来创建UIAlertController

 var avc = UIAlertController(title: "Location", message: "Please Enter A Location", preferredStyle: UIAlertControllerStyle.Alert)
            self.navigationController!.presentViewController(avc, animated: true, completion: nil)

在模拟器中运行它,我看到了

enter image description here

很确定这是Xcode 6 beta 7或swift中的一个错误?想法?

1 个答案:

答案 0 :(得分:4)

找到答案,我应该向UIAlertController添加一个动作,以便显示消息:

    alert.addAction(UIAlertAction(title: "OK", style: UIAlertActionStyle.Default, handler: nil))