2

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

2

4 Answers 4

2

In your UITableViewDelegate implementation:

func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
    view.endEditing(true)
}
2

try using "IQKeyboardManagerSwift", it has all the keyboard controls that you will need in the future.

1

This could be helpful-

extension YourViewController: UITableViewDelegate {

        func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
            self.view.endEditing(true)
        }
    }
1

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.