Just Eat Gennadii Tsypenko Aug 7, 2024

Building VoiceOver-Friendly iOS Applications

Article Summary

Gennadii Tsypenko from Just Eat Takeaway reveals why VoiceOver accessibility often gets overlooked in iOS development—and shares the exact SwiftUI modifiers that fix it. Most teams skip this until it's too late.

VoiceOver has been part of iOS since 2009, yet many apps still fail basic accessibility tests. This practical guide walks through how VoiceOver actually works (gestures, focus, rotor controls) and provides concrete SwiftUI implementation patterns that engineering teams can adopt immediately.

Key Takeaways

Critical Insight

Building VoiceOver-friendly iOS apps requires three semantic modifiers and thorough testing with both real devices and Xcode tools.

The article includes a specific SwiftUI code pattern for handling focus state that solves a common bottom sheet navigation problem most developers encounter.

About This Article

Problem

VoiceOver launched in 2009 with iPod Shuffle and iPhone 3GS, but many iOS developers still don't use it fully. It's available across Apple's entire ecosystem and helps users with visual impairments, yet it remains overlooked in most iOS development.

Solution

Gennadii Tsypenko suggests adding semantic labels to your code using accessibilityLabel, accessibilityTraits like .button, .link, and .header, plus accessibilityHint modifiers in SwiftUI. This gives VoiceOver users the context they need to navigate buttons, links, and other interactive elements.

Impact

You can test your work on real devices and use Xcode's Accessibility Inspector to check that UI elements have proper labels, traits, and hints. This approach makes your app accessible to visually impaired users and expands who can actually use what you build.