These iOS-only modifiers refine how a component is exposed to assistive technologies like VoiceOver.Documentation Index
Fetch the complete documentation index at: https://docs.metabind.ai/llms.txt
Use this file to discover all available pages before exploring further.
accessibilityHint adds a description of what activating the component will do; accessibilityAddTraits marks a component with semantic traits like header or button; accessibilityRepresentation swaps in an alternative tree for assistive technologies to traverse.
Pair these with the cross-platform accessibilityLabel and accessibilityValue modifiers.
accessibilityHint
Sets a VoiceOver hint that describes the result of interacting with a component.A description of what happens when the user activates the component. VoiceOver reads this after a short pause following the label.
accessibilityRepresentation
Provides an alternative accessibility representation of a component for assistive technologies.A component that replaces this component’s accessibility tree. Assistive technologies interact with this representation instead of the original component.
accessibilityAddTraits
Adds accessibility traits to a component for assistive technologies like VoiceOver.One or more accessibility traits to add to the component. See AccessibilityTraits.
See also
- accessibilityLabel — sets the spoken label for assistive technologies
- accessibilityValue — sets the spoken value
- accessibilityRemoveTraits — removes accessibility traits
- AccessibilityTraits — available trait values