To dismiss the keyboard I use either one of the following:

[sender dismissFirstResponder]
[self dismissFirstResponder]

The problem is, I have a situation where the user selects a text field, and some other text field is the first responder with the keyboard showing. I want to dismiss the keyboard when this particular text field is selected. So neither of these will work to dismiss the keyboard.

How can I dismiss the keyboard if I don't know who is the first responder?

link|improve this question

58% accept rate
feedback

1 Answer

up vote 3 down vote accepted

See this answer for how to find the current first responder.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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