Paulo Ferreira
Paulo Ferreira

Reputation: 421

iPhone accessibility on button with image

Anyone knows how to prevent VoiceOver from speaking the button image filename?

Thanks in advance!

Upvotes: 2

Views: 722

Answers (2)

Rakitha
Rakitha

Reputation: 904

self.button.accessibilityLabel = @"Your accessibility label";
self.button.accessibilityTraits = UIAccessibilityTraitButton;

Hope this help

Upvotes: 4

Saqib
Saqib

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

Related Questions