I have quite a few controls scattered throughout many table cells in my table, and I was wondering if there's an easier way to dismiss the keyboard without having to loop through all my controls and resigning them all as the first responder. I guess the question is.. How would I get the current first responder to the keyboard?
|
2
|
|||
|
|
|
Here's one idea:
Then make that class the delegate of all your Edit: The other suggested method is better. Do something like this:
and bind |
||||||
|
|
|
A better approach is to have something "steal" first responder status. Since UIApplication is a subclass of UIResponder, you could try:
Failing that, create a new UITextField with a zero sized frame, add it to a view somewhere and do something similar (become followed by resign). |
||||||
|
|
|
i am not really sure why one would need to go through all this. consider this scenario: i have a i do this in viewDidLoad
and the viewcontroller implements the optional method as
and irrespective of the textfield you are in, as soon as i hit In your case, the same would work as long as you set all the textfield's delegate to self and implement Please correct me if i am missing the obvious!! Cheers - Prakash |
||
|
|
|
I hate that there's no "global" way to programmatically dismiss the keyboard without using private API calls. Frequently, I have the need to dismiss the keyboard programmatically without knowing what object is the first responder. I've resorted to inspecting the It shouldn't be this hard to do this... |
||
|
|
