When a hardware keyboard is used with iOS, pressing tab or shift-tab automatically navigates to the next or previous logical responder, respectively. Is there a way to do the same programmatically (i.e. simulating the tab key rather than keeping track of the logical order manually)?
feedback
|
|
As William Niu is right but you can also use this code explained below. I have used this and got success.Now consider the example of UITextField... You can use UITextView's delegate method But before doing this you should have to give tag to each UITextField in an Increment order...(Increment order is not required necessary ,but as for my code it is required, you can also use decrement order but some code changes for doing this)
Hope this will work for you... Happy coding.... | |||
|
feedback
|
|
You may define the "tab-order" using the tag property. The following post describes how to find the next tag index to go to for Here is a modified version of the code from that post. Instead of removing keyboard at the last tag index, this following code would try to loop back to the first tag index.
If you want an UI element other than | |||
|
feedback
|
|
Not sure if this helps, but in the context of a UITextFields, if you implement I've tried to hit directly on my laptop keyboard and it seemed to jump between all the textfields in the order in which you've added them to the view, but didn't go to any other types of fields (Buttons etc.). key on the keyboard is simulating the key on the soft keyboard of the simulator, which works as expected. | |||
|
feedback
|