vote up 0 vote down star

I want to keep my keyboard up after I input something since I am gathering up multiple answers for one question.

So far I am calling:

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

But when remove resignFirstResponder, I am not getting any response for my input handler on this method:

- (void)textFieldDidEndEditing:(UITextField*)textField;

Anyone have an idea on how to deal with this?

flag

58% accept rate

1 Answer

vote up 0 vote down check

Found my solution, in my

- (void)textFieldDidEndEditing:(UITextField*)textField;

I just make the textField back to first responder after it has been resigned:

[textField becomeFirstResponder];
link|flag

Your Answer

Get an OpenID
or

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