Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save guimello/982059 to your computer and use it in GitHub Desktop.
Save guimello/982059 to your computer and use it in GitHub Desktop.
return_from_text_field_omg.m
/* So I never need to look for it anymore... :) */
- (void)viewDidLoad
{
[super viewDidLoad];
aTextField.delegate = self;
}
- (BOOL)textFieldShouldReturn:(UITextField *)theTextField
{
[theTextField resignFirstResponder];
return YES;
}
/* A final touch... on the interface <UITextFieldDelegate> /*
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment