First select TextFields in Interface Builder, then find Text Input Traits in Text Field Attributes, and select Return Key as done. OK
Define the method
- (IBAction) textFieldDoneEditing:(id)sender; //Press Done key to close the keyboard
Implementation method
Copy the codeThe code is as follows:
//Close the keyboard after pressing the Done key
- (IBAction) textFieldDoneEditing:(id)sender
{
[sender resignFirstResponder];
}
Then find the event Did End On Exit, associated with textFieldDoneEditing, OK.
The above is all about this article. I hope you like it