UIAlertController没有显示

时间:2016-06-29 13:58:49

标签: ios swift uialertcontroller

我正在尝试使用提醒控制器向我的用户显示一条消息,但它不会显示

let alert = UIAlertController(title: "Error", message: "Incorrect username/password", preferredStyle: UIAlertControllerStyle.Alert)
        alert.addAction(UIAlertAction(title: "okay", style: UIAlertActionStyle.Default, handler: nil))

1 个答案:

答案 0 :(得分:4)

看起来你还没有提出它。将此代码粘贴到要显示警报的位置

self.present(alert, animated: true, completion: nil)