Reputation: 421
Anyone knows how to prevent VoiceOver from speaking the button image filename?
Thanks in advance!
Upvotes: 2
Views: 722
Reputation: 904
self.button.accessibilityLabel = @"Your accessibility label";
self.button.accessibilityTraits = UIAccessibilityTraitButton;
Hope this help
Upvotes: 4
Reputation: 7422
If you set an accessible name for the button, Voiceover will read that instead of the filename. find exact info at http://developer.apple.com/accessibility
Upvotes: 2