Availability in Interface Builder in Xcode 4.3

I was wondering if anyone knows where the view of accessibility is in Xcode 4.3?

enter image description here

This is what I see in my IB; there is no tab for accessibility.

+3
source share
1 answer

EDIT:

UITableView It doesn’t have accessibility disclosures, because the elements inside it (the cell, or, in fact, the label and buttons and everything else that you put in the user’s table view cell) will be the accessibility elements that the user is looking for.

Original answer:

An accessibility label is available for many different UIViewsubclass objects (such as controls, such as buttons).

XCode 4 XIB/Interface Builder, , :

enter image description here

+2

All Articles