Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

2 Answers

up vote 64 down vote accepted
- (BOOL)textFieldShouldReturn:(UITextField *)textField {
    [textField resignFirstResponder];
    return NO;
}
share|improve this answer
Somehow this doesn't work at all. Enter key is not caught. – Jonny Dec 16 '10 at 2:07
16  
Make sure your view controller is set as the textfield's delegate. – zekel Feb 15 '11 at 22:01
@zekel thanks its working for me this is what i need ... – Karthik Apr 15 at 6:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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