I have a NSWebView
and when I use VoiceOver on Mac OS X
it announces the NSWebView
selection as "HTML
content" This is most likely going to confuse the end user as I am using it for a custom control and I have handled all the other accessibility aspects of the NSWebView
correctly.
How can I override what VoiceOver announces for the NSWebView
? I have tried the following however it doesn't make any difference:
[webView accessibilitySetOverrideValue:@"Map View" forAttribute:NSAccessibilityDescriptionAttribute];
I have also tried NSAccessibilityRoleDescriptionAttribute
and NSAccessibilityTitleAttribute
for the attributes.