Search code examples
iosiphonecocoa-touchuitextfieldbackspace

UITextField - capture return button event


How can I detect when a user pressed "return" keyboard button while editing UITextField? I need to do this in order to dismiss keyboard when user pressed the "return" button.

Thanks.


Solution

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

    Don't forget to set the delegate in storyboard...

    enter image description here