Skip to content

Instantly share code, notes, and snippets.

@jakemoore
Created August 20, 2013 17:20
Show Gist options
  • Save jakemoore/6284444 to your computer and use it in GitHub Desktop.
Save jakemoore/6284444 to your computer and use it in GitHub Desktop.
- (BOOL)textFieldShouldBeginEditing:(UITextField *)textField
{
if (textField == self.firstTextField) {
[self.secondTextField becomeFirstResponder];
return NO;
}
return YES;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment