Move to next field

iPad. Data entry. I have a series of fields (user may enter several email addresses). Would like tap on Done button in keyboard to move to next field.

Anyone have any clues?

I do this using Xojo-iOSLib from @Ulrich Bogun .

You replace your iOSTextField controls with iOSLibTextFields. Then you can set the returnKeyType to, for example, AppleTextField.UIReturnKeyType.Next_ or AppleTextField.UIReturnKeyType.Done if you want a Next button or a Done button on the keyboard when cursor is in that field.

To handle the Next or Done, etc, actions you put code into the ShouldNotReturn event of the iOSLibTextField to either move to the next field in the case of Next or save/login/search, etc in the case of Done.