3

在我的视图控制器中,我有以下代码来创建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 中的错误?想法?

4

1 回答 1

4

找到了答案,我应该为UIAlertController要显示的消息添加一个操作:

    alert.addAction(UIAlertAction(title: "OK", style: UIAlertActionStyle.Default, handler: nil))
于 2014-09-07T20:44:13.737 回答