I am making my iPhone app accessible. VoiceOver is pretty impressive. When a user uses VoiceOver, it automatically reads off the items on the screen and allows the user to double-tap anywhere on the screen to select that item. However, I want VoiceOver to read the items in a specific order, but it always begins with the UINavigationBar items including the back button. I don't want these items not to be read at all, I just want to start with a specific item. Is there a VoiceOver-equivalent of "firstResponder"?

link|improve this question

77% accept rate
feedback

1 Answer

In some cases, setting UIAccessibilityTraitSummaryElement on one item can do this. (My game seems too dynamic for this to help much.)

link|improve this answer
Or possibly not — I may misunderstand UIAccessibilityTraitSummaryElement, it may simply be what is spoken at screen entry. Which is not the same as the focused item. – David Dunham Oct 10 '11 at 4:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.