I am developing an application where I am creating some UITextField programmatically, and I allow a maximum 1 character in the UITextField.
This is working perfectly.
But after writing the character, the user has to again tap in the next UITextField to present the keyboard
After typing 1 character the cursor should automatically move to next UITextField.
How can I do that?
Catch the delegate that informs you your textfield has been changed. Check if the new length is 1. If it is, call
becomeFirstResponderon the next field.