vote up 3 vote down star
2

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?

flag
good question +1 – Raj Apr 12 at 9:36

4 Answers

vote up 5 vote down check

Here's one idea:

@interface ... {
    UITextField *editingField;
}

- (void)textFieldDidBeginEditing:(UITextField *)textField;
{
    editingField = textField;
}

- (IBAction)dismissKeyboard:(id)sender;
{
    [editingField resignFirstResponder];
}

Then make that class the delegate of all your UITextFields. You could also subclass UITextField (or whatever other control you're using) and override -becomeFirstResponder.

Edit: The other suggested method is better. Do something like this:

@interface ... {
    UITextField *someField;
}

- (IBAction)dismissKeyboard:(id)sender;
{
    [someField becomeFirstResponder];
    [someField resignFirstResponder];
}

and bind someField to any UITextField in IB. (Note that this doesn't work on desktop Cocoa, where becomeFirstResponder is only a notification method; you need to use NSWindow methods. Then again, desktop Cocoa actually has a method to ask for the first responder.)

link|flag
good answer +1 ;-) – Raj Apr 12 at 9:38
But that will only block the component from becoming firstResponder, not remove current firstResponder status from an element. – Kendall Helmstetter Gelner Apr 13 at 6:29
What I meant in overriding becomeFirstResponder to store the first responder somewhere, so it can be accessed (in this case, resigned) later. The basic problem is that Cocoa Touch does not provide a way to ask a window or view what its first responder is. – Nicholas Riley Apr 13 at 15:29
vote up 3 vote down

A better approach is to have something "steal" first responder status.

Since UIApplication is a subclass of UIResponder, you could try:

[[UIApplication sharedApplication] becomeFirstResponder]
[[UIApplication sharedApplication] resignFirstResponder]

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

link|flag
1  
The UIApplication trick doesn't work (it crashes, at least on the simulator) but you don't need a zero-sized UITextField - just pick any random field and do this with it. NSResponder's becomeFirstResponder is a notification only method, yet UIResponder's isn't (the design is worse, actually). – Nicholas Riley Apr 13 at 15:50
Aha, thanks! It crashes calling it on UIApplication but the zero size UITextField works great, and I don't have to retrieve any of my previous fields. – Seventoes Apr 21 at 22:59
vote up 0 vote down

i am not really sure why one would need to go through all this.

consider this scenario:

i have a viewcontroller with two textfields (username and password). and the viewcontroller implements UITextFieldDelegate protocol

i do this in viewDidLoad

- (void)viewDidLoad 
{
    [super viewDidLoad];

    username.delegate = self;
    password.delegate = self;
}

and the viewcontroller implements the optional method as

- (BOOL)textFieldShouldReturn:(UITextField *)textField
{
    [textField resignFirstResponder];
    return YES;
}

and irrespective of the textfield you are in, as soon as i hit return in the keyboard, it gets dismissed!

In your case, the same would work as long as you set all the textfield's delegate to self and implement textFieldShouldReturn

Please correct me if i am missing the obvious!!

Cheers - Prakash

link|flag
Well I already have the problem solved, but in my case I wanted to dismiss the keyboard on my own (in code), and I didn't know which textField had first responder status. – Seventoes Jul 16 at 7:03
vote up 0 vote down

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 self using the Objective-C runtime API, enumerating through all of its properties, pulling out those which are of type UITextField, and sending them the resignFirstResponder message.

It shouldn't be this hard to do this...

link|flag

Your Answer

Get an OpenID
or

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