On this page
Why VoiceOver Testing Is Non-Negotiable for iOS Accessibility
VoiceOver is Apple's built-in screen reader and the primary assistive technology used by blind and low-vision iPhone users. iOS accessibility compliance directly determines whether your app is usable by a significant portion of your potential audience. VoiceOver testing on real devices reveals failures that automated tools will never catch.
Essential VoiceOver Gestures Every Tester Must Know
- Single tap — move VoiceOver cursor to element and announce it
- Double tap — activate focused element (equivalent to a tap)
- Swipe right / left (1 finger) — next / previous focusable element
- Two-finger swipe up — read all content from top of screen
- Two-finger tap — pause or resume speech
- Three-finger swipe left / right — scroll pages
- Two-finger scrub (Z shape) — go back / dismiss modal
SwiftUI vs UIKit Accessibility APIs
SwiftUI Accessibility Modifiers
Use .accessibilityLabel(), .accessibilityHint(), .accessibilityRole(), and .accessibilityAddTraits() chained directly on views. Use .accessibilityElement(children: .combine) to merge child elements into a single focusable unit, and .accessibilityHidden(true) to remove decorative elements from the accessibility tree.
Common iOS Accessibility Failures and Fixes
- Icon buttons without accessibilityLabel — add descriptive labels, never the icon name
- Modal dialogs that trap or lose VoiceOver focus — set UIAccessibility.post(.screenChanged) on modal appear
- Custom sliders with no accessibilityValue — implement accessibilityValue and increment/decrement methods
- Decorative images announced as 'image' — set isAccessibilityElement = false
- Reading order following visual layout incorrectly — override accessibilityElements on containers
- Live regions not announcing updates — use UIAccessibility.post(notification: .announcement, argument:)
Senior WCAG Auditor
IAAP Web Accessibility Specialist (WAS) certified. 8 years auditing 200+ digital products across healthcare, finance, and e-commerce using JAWS, NVDA, and VoiceOver. Specializes in complex single-page applications and custom component accessibility.
Need help making your site accessible?
We offer free consultations to assess your current accessibility posture and recommend a path forward.
Get a Free Consultation