我创建了一个带有 a 的注册表单,UIAlertController
并使用该方法addTextFieldWithConfigurationHandler
添加了一个文本字段。但是有一个小问题。
当表单出现时,键盘和模式会以流畅的动画出现。关闭窗体时,modal先消失,然后键盘消失。这使得键盘突然向下坠落。
如何使模态和键盘优雅地消失?
lazy var alertController: UIAlertController = { [weak self] in
let alert = UIAlertController(title: "Alert", message: "This is a demo alert", preferredStyle: .Alert)
alert.addTextFieldWithConfigurationHandler { textField in
textField.delegate = self
}
alert.addAction(UIAlertAction(title: "OK", style: .Default, handler: nil))
return alert
}()
@IBAction func alert() {
presentViewController(alertController, animated: true, completion: nil)
}
func textFieldShouldReturn(textField: UITextField) -> Bool {
alertController.dismissViewControllerAnimated(true, completion: nil)
return true
}