vote up 1 vote down star
1

I am working on making my iPhone app accessible. I have several UIBarButtonItem objects in Interface Builder, and I cannot find any option to set the accessibility label or hint for these buttons.

How can I set these attributes?

flag

50% accept rate

2 Answers

vote up 1 vote down

Check out Apple's documentation on UIAccessibility.

link|flag
Yes, I already read the docs. I was hoping there was a way to do this in IB or in some other elegant way. I posted my kludge solution but am still open for a cleaner approach. – Tim Norman Oct 27 at 2:22
Sorry, this capability hasn't (yet?) been added to IB. I think you kludge is probably the best you're going to do for now. – Ben Gottlieb Oct 28 at 11:48
vote up 0 vote down

Okay, so it seems there's no way to do it in Interface Builder, even though you can set accessibility attributes on other UI elements using IB. So I set a tag on my toolbar and then added this code to my viewWillAppear method:

UIToolbar *bottombar = (UIToolbar*)[self viewWithTag:kBottomToolbar];

UIView *view = (UIView*)[bottombar.items objectAtIndex:0];
[view setAccessibilityLabel:NSLocalizedString(@"Add Bookmark", @"")];
[view setAccessibilityHint:NSLocalizedString(@"Add Bookmark", @"")];

and so on for each button item...

Not the most elegant, but it works.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.