Selecting an option can cause VoiceOver to jump to top of page
Maybe it may come in handy this css property: .button { speak: spell-out; } Edit: this only works in firefox, see Mozilla docs
Maybe it may come in handy this css property: .button { speak: spell-out; } Edit: this only works in firefox, see Mozilla docs
This was a bug in iOS and is fixed now. I started to see this bug in iOS8. And reported a bug to Apple about this 6. Nov 2014. Was fixed in iOS 9.3.2. There is nothing you can do as developer if you are on affected OS version. Recommend users of your app to … Read more
You can change the order by setting the view’s accessibilityElements array: self.view.accessibilityElements = @[self.view1, self.view2, self.view3, self.view4]; or self.anotherView.accessibilityElements = @[self.label1, self.txtView1, self.label2, self.txtView2]; If you need to enable user interaction programmatically: [self.view1 setUserInteractionEnabled:YES]; Note: If the view is hidden, VoiceOver will not pass through it.
BOOL UIAccessibilityIsVoiceOverRunning();