- (IBAction)textFieldDoneEditing:(id)sender {
[sender resignFirstResponder];
[sender becomeFirstResponder];
}
I have a UItextField object, and link the "Did End On Exit" to the "textFieldDoneEditing" action. After I press the Done button on the keyboard, why is it dismissed?