How can I tell the current firstResponder to resign? I have a UITableView with a bunch of TextFields and I don't know which is active at all times. I thought about storing pointers to all cells in an array and iterating through it, telling every cell to resignFirstResponder but I'm sure there is an easier way. Maybe something like [CurrentFirstResponder resignFirstResponder]?

I would appreciate some help, Fabian

EDIT: I don't want to dismiss the keyboard when the user taps done. It should be dismissed programmatically. Since I don't know which UITextField is active at any time, I am searching for something that calls resignFirstResponder on the current FirstResponder.

link|improve this question

feedback

3 Answers

up vote 2 down vote accepted

//instance variable UITextField * focusedTextField;

- (void)textFieldDidBeginEditing:(UITextField *)tf
{
    focusedTextField=tf;
}

and when you want to remove the focus,

[focusedTextField resignFirstResponder];
link|improve this answer
Figured that out just now too :) The problem was that my UITextField s are enclosed in custom UITableViewCell s, but I added a new delegate method that sends - (void)textFieldDidBeginEditing:(UITextField *)tf to the delegate. There I then have an instance variable... – fabian789 Jan 31 '11 at 14:47
feedback

I hope this will solve your problem,

Assign delegate to UItextField,

textField.delegate=self;

then in following method

    - (void)textFieldDidBeginEditing:(UITextField *)textField
    {
//This for to resign on begin editing
    [textField resignFirstResponder];
    }

 - (void)textFieldDidEndEditing:(UITextField *)textField
    {
//This for to resign on end editing
    [textField resignFirstResponder];
    }

If you dont want to the textField to be editable then,

textField.editing=NO;

Set tag to distingush your textFields

link|improve this answer
feedback

Simply use the UITextFieldDelegate (reference). Whenever - (BOOL)textFieldShouldReturn:(UITextField *)textField is called, perform [textField resignFirstResponder], since this method is always invoked with the currently active textfield. If you still need to distinguish between your textfields, try setting a tag and use it with if(textfield.tag == self.mytextfield.tag) {...}

link|improve this answer
I updated my question, hope it becomes clearer. – fabian789 Jan 31 '11 at 14:41
feedback

Your Answer

 
or
required, but never shown

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