swift3.0 点击UIScrollView中输入框之外的区域关闭键盘

it2022-05-05  102

通过点击事件实现关闭键盘

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() }

 

转载于:https://www.cnblogs.com/kunH/p/6846598.html


最新回复(0)