Created
May 19, 2011 23:59
-
-
Save guimello/982059 to your computer and use it in GitHub Desktop.
return_from_text_field_omg.m
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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