写在视图中的
override func touchesBegan(touches: Set<UITouch>, withEvent event: UIEvent?) {
//放弃编辑
self.view.endEditing(true)
}
写给textField自己的delegate的话
textFiled.resignFirstResponder()//释放焦点
override func touchesBegan(touches: Set<UITouch>, withEvent event: UIEvent?) {
//放弃编辑
self.view.endEditing(true)
}
textFiled.resignFirstResponder()//释放焦点
本文标题:iOS 收回键盘方法总结
本文链接:https://www.haomeiwen.com/subject/vvsphttx.html
网友评论