标签:nbsp use ble res 输入 cto font oar hid
通过点击事件实现关闭键盘
scrollView: UIScrollView!
title_textField: UITextField!
let hideKeyboardTapGesture = UITapGestureRecognizer(target: self, action: #selector(hideKeyboardTapGesture(sender:))) scrollView.isUserInteractionEnabled = true scrollView.addGestureRecognizer(hideKeyboardTapGesture)
关闭实现
func hideKeyboardTapGesture(sender: UITapGestureRecognizer){
title_textField.resignFirstResponder()
}
swift3.0 点击UIScrollView中输入框之外的区域关闭键盘
标签:nbsp use ble res 输入 cto font oar hid
原文地址:http://www.cnblogs.com/kunH/p/6846598.html