Hey it's very easy to do... just hook up a IBAction to the first textfield (use DidEndOnExit).
Then do something like this
Code:
- (IBAction)nextPressedOnKeyboard {
// this gets called when the user presses next (on the first textfield) on the keyboard
[textField2 becomeFirstResponder]; //change the current editing textField to textField2
}