經過點擊事件實現關閉鍵盤ide
scrollView: UIScrollView!
title_textField: UITextField!
let hideKeyboardTapGesture = UITapGestureRecognizer(target: self, action: #selector(hideKeyboardTapGesture(sender:))) scrollView.isUserInteractionEnabled = true scrollView.addGestureRecognizer(hideKeyboardTapGesture)
關閉實現spa
func hideKeyboardTapGesture(sender: UITapGestureRecognizer){
title_textField.resignFirstResponder()
}