I have TableViewController with UITextFields as cells and cells without TextField.
I would like to hide the keyboard when I tapped on another cell without TextField
-
2Possible duplicate of Close iOS Keyboard by touching anywhere using Swift– Cedan MisquithCommented Jun 20, 2019 at 7:37
-
I would suggest you use github.com/xmartlabs/Eureka / XLForm based on your need. This automatically handles all the needs of Keyboard management and makes life easier.– Pavan KoteshCommented Jun 20, 2019 at 7:37
Add a comment
|
4 Answers
In your UITableViewDelegate implementation:
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
view.endEditing(true)
}
try using "IQKeyboardManagerSwift", it has all the keyboard controls that you will need in the future.
This could be helpful-
extension YourViewController: UITableViewDelegate {
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
self.view.endEditing(true)
}
}
You have two ways to handle it, first you can hide keyboard when the user tapped on cells without TextField, by table view delegate, but you should ignore the rows that had textfiled
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
view.endEditing(true)
}
Or you can add UITapGestureRecognizer to the cells that dose not had text field
func hideKeyboardWhenTappedAround() {
let tap: UITapGestureRecognizer = UITapGestureRecognizer(target: self, action: #selector(UITableViewCell.dismissKeyboard))
view.addGestureRecognizer(tap)
}
@objc func dismissKeyboard() {
view.endEditing(true)
}