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

I have 2 uiTextFields (e.g. username and password) but I cannot get rid of the keyboard when pressing the return key on the keyboard.

How can I do this?

Thanks.

share|improve this question

6 Answers

up vote 50 down vote accepted

First you need to subscribe to the UITextFieldDelegate Protocol in your View/ViewController's header file like this:

@interface YourViewController : UIViewController <UITextFieldDelegate>

Then in your .m file you need to implement the following UITextFieldDelegate protocol method:

- (BOOL)textFieldShouldReturn:(UITextField *)textField
{
    [textField resignFirstResponder];

    return YES;
}

[textField resignFirstResponder] makes sure the keyboard is dismissed.

Make sure you're setting your view/viewcontroller to be the UITextField's delegate after you init the textfield in the .m:

yourTextField = [[UITextField alloc] initWithFrame:yourFrame];
//....
//....
//Setting the textField's properties
//....    
//The next line is important!!
yourTextField.delegate = self; //self references the viewcontroller or view your textField is on
share|improve this answer
Hi Siddharth, I have done what you said above but it still doesn't make the keyboard disappear. I've done the UITextFieldDelegate and then in my .m file, I have the above. Inside, [self.usernameField resignFirstResponder]; return YES;. Still not working though... Do you know why? Thanks. – K.Honda Jun 1 '11 at 9:09
I have done this now. Thanks. – K.Honda Jun 1 '11 at 9:18
Cool... glad it worked – Sid Jun 1 '11 at 16:06
You can also implement the delegate in storyboard by clicking on the textfield, show Utilities panel, click Connections Inspector, drag delegate outlet onto the view controller. – SKG Mar 20 at 16:13
@Sid Hi, this works great when the UITextFields are in a view. If I have UITextFields inside a scroll view, when tapped on a UITextField, even the keyboard doesn't show up. So I changed the delegate to the scroll view. Now the keyboard shows up but when the return key is pressed, it doesn't fire the textFieldShouldReturn method. Any idea how to get around this? – Isuru Mar 29 at 10:59
show 3 more comments

Implement the UITextFieldDelegate method like this:

- (BOOL)textFieldShouldReturn:(UITextField *)aTextField
{
    [aTextField resignFirstResponder];
    return YES;
}
share|improve this answer
Hey Nick, I have done the above but still does not work. Any ideas? Thanks. – K.Honda Jun 1 '11 at 9:12
I have done this now. Thanks. – K.Honda Jun 1 '11 at 9:18

See Managing the Keyboard for a complete discussion on this topic.

share|improve this answer
Thanks. – K.Honda Jun 16 '11 at 15:14

Your UITextFields should have a delegate object (UITextFieldDelegate). Use the following code in your delegate to make the keyboard disappear:

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

Should work so far...

share|improve this answer
Hey mate, I've done what you have said above but I still can't get the keyboard to disappear. Do you have any ideas? Thanks. – K.Honda Jun 1 '11 at 9:11
Hey chris, it's all sorted now. Thanks. – K.Honda Jun 1 '11 at 9:18

Took me couple trials, had same issue, this worked for me:

Check your spelling at -

(BOOL)textFieldShouldReturn:(UITextField *)textField {
    [textField resignFirstResponder];

I corrected mine at textField instead of textfield, capitalise "F"... and bingo!! it worked..

share|improve this answer

When the return key is pressed, call:

[uitextfield resignFirstResponder];
share|improve this answer
Hey Conor, how does the app know when the return key is pressed? Thanks. – K.Honda Jun 1 '11 at 9:11
all is good. Thanks. – K.Honda Jun 1 '11 at 9:18

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.