Tamas
Tamas

Reputation: 3442

How to show the Accessibility pane in Xcode's attribute inspector

According to the documentation you can configure VoiceOver properties of the UI elements in the Accessibility pane in the attribute inspector.

Accessibility pane

On the other hand this pane is not visible for me for any UIElements (buttons or labels). I'm using the latest XCode 10.12.1. All I see is an 'Accessibility' checkbox with seemingly no effect.

enter image description here

How can I configure the Accessibility properties (Label, Hint, Identifier) of the UI elements using the storyboard?

Upvotes: 1

Views: 593

Answers (1)

Anton Vlasov
Anton Vlasov

Reputation: 1410

You should use Identity inspector instead of Attributes inspector:

Identity Inspector

Accessibility properties at the middle:

Accessibility

Upvotes: 3

Related Questions