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.
|
I have 2 How can I do this? Thanks. |
|||
|
|
|
First you need to subscribe to the UITextFieldDelegate Protocol in your View/ViewController's header file like this:
Then in your .m file you need to implement the following UITextFieldDelegate protocol method:
[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:
|
|||||||||||
|
|
Implement the UITextFieldDelegate method like this:
|
|||
|
See Managing the Keyboard for a complete discussion on this topic. |
|||
|
|
|
Your UITextFields should have a delegate object (UITextFieldDelegate). Use the following code in your delegate to make the keyboard disappear:
Should work so far... |
|||
|
Took me couple trials, had same issue, this worked for me: Check your spelling at -
I corrected mine at |
||||
|
|
|
When the return key is pressed, call:
|
|||