SoFunction
Updated on 2025-04-03

Keyboard when canceling text box input in IOS development

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