Upgrade to Pro — share decks privately, control downloads, hide ads and more …

An Introduction to Accessibility on iOS: Better Apps for Everyone

Bas Broek
August 28, 2019

An Introduction to Accessibility on iOS: Better Apps for Everyone

An iOS accessibility workshop given at SwiftConf Cologne, 2019

Bas Broek

August 28, 2019
Tweet

More Decks by Bas Broek

Other Decks in Programming

Transcript

  1. An introduction to Accessibility on iOS: Better Apps For Everyone

    @basthomas SwiftConf Cologne, 2019 @basthomas 1
  2. An introduction to VoiceOver let button = UIButton() button.image =

    plusImage button.accessibilityLabel = NSLocalizedString( "Add item", comment: "") button.accessibilityHint = NSLocalizedString( "Adds the item to your storage", comment: "") @basthomas 4