Question

I have a form that looks like the following (see image). If the user hits the Login button, I want the keypad to disappear. How do I do that.

Note that TextFieldDelegate methods wouldnt get called since the user is simply hitting the UIButton (Login). Hence, anything I can put in the IBAction for this button?

alt text

Was it helpful?

Solution

Normally the keyboard should be dismissed automatically when the user taps somewhere outside of the textfield, but you can also manually hide it using

[textField resignFirstResponder]

OTHER TIPS

 set delegate for your text field <UITextFieldDelegate>
 and over ride this method

-(BOOL)textFieldShouldReturn:(UITextField *)textField
{
   [textField resignFirstResponder];
    return YES;
}
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top