Skip to content

Instantly share code, notes, and snippets.

@searls
Created December 17, 2010 17:52
Show Gist options
  • Save searls/745369 to your computer and use it in GitHub Desktop.
Save searls/745369 to your computer and use it in GitHub Desktop.
@interface ... {
UITextField *someField;
}
- (IBAction)dismissKeyboard:(id)sender;
{
[someField becomeFirstResponder];
[someField resignFirstResponder];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment