我正在尝试使用提醒控制器向我的用户显示一条消息,但它不会显示
let alert = UIAlertController(title: "Error", message: "Incorrect username/password", preferredStyle: UIAlertControllerStyle.Alert)
alert.addAction(UIAlertAction(title: "okay", style: UIAlertActionStyle.Default, handler: nil))
答案 0 :(得分:4)
看起来你还没有提出它。将此代码粘贴到要显示警报的位置
self.present(alert, animated: true, completion: nil)