Skip to content

Instantly share code, notes, and snippets.

@justin
Created April 3, 2012 02:14
Show Gist options
  • Save justin/2288828 to your computer and use it in GitHub Desktop.
Save justin/2288828 to your computer and use it in GitHub Desktop.
textFieldShouldReturn Example
- (BOOL)textFieldShouldReturn:(UITextField *)textField
{
if ([textField isEqual:self.firstField] == YES)
{
[self.secondField becomeFirstResponder];
}
else
{
[self.secondField resignFirstResponder];
}
return YES;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment