Modify Voice over accessibility traverse order in Objective C

Viewed 26

In an iOS app written with Objective C, when Voice Over is on, The cancel button on the top-left and the save button on the top-right, those two buttons are in the same top bar on the view, now the order is cancel->save->other views on the page. But I need to actually traverse and edit all other elements before I can save, so I need to set the traverse order as cancel ->all other view->save button.

I saw some solutions that create new views to group elements or reorder accessibilityElementOrders. But I am just changing one button, is there an easy way like android:accessibilityTraversalAfter in Objective C?

0 Answers
Related