Skip to content

Instantly share code, notes, and snippets.

View Juriv's full-sized avatar

Juri V. Juriv

View GitHub Profile
@Juriv
Juriv / gist:5049449
Created February 27, 2013 16:51 — forked from sco/gist:832499
// UITextFieldDelegate method, called when the "Return" key is pressed.
// Either advance the cursor to the next empty field, or submit the form.
//
- (BOOL)textFieldShouldReturn:(UITextField *)textField {
if([usernameField.text length] == 0) {
[usernameField becomeFirstResponder];
} else if ([passwordField.text length] == 0) {
[passwordField becomeFirstResponder];
} else {