Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Accessibility Focus

Working with Accessibility

While VoiceOver reads the elements in the application in an order,Is there anyway to shift the focus between the elements? I tried working with "nextResponder",but it is not working.

like image 454
Sumanth Nadigadda Avatar asked Apr 11 '12 05:04

Sumanth Nadigadda


1 Answers

As of iOS 6, you can set the focus to a specific element with a UIAccessibilityLayoutChangedNotification, passing the element

UIAccessibilityPostNotification(UIAccessibilityLayoutChangedNotification, firstBottom);

but if you're trying to completely change the “tab order” I don’t know of a way to do it.

like image 177
David Dunham Avatar answered Nov 08 '22 17:11

David Dunham