I am trying to do something I thought would be simple.
I have a form with two UITextFields on it. I am using the UIReturnKeyNext style on the first. The idea is that when the user fills in the first field, they click Next and I transition them to the next UITextField. I’ve seen other apps that do this and it works really well. But I cannot figure out how to set the focus to the next field.
Simple. send a becomeFirstResponder message to your other textfield. When the other textfield accepts first responder status, it will receive the information from the keyboard.
For Example: