Accessibility Focus

accessibility, focus, ios, iphone, voiceover

Solution

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.

Problem

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.

Original source

Related problems