fix(ios): stop repeating ChoiceSet label on every radio/checkbox item#659
Open
hggzm wants to merge 1 commit intomicrosoft:mainfrom
Open
fix(ios): stop repeating ChoiceSet label on every radio/checkbox item#659hggzm wants to merge 1 commit intomicrosoft:mainfrom
hggzm wants to merge 1 commit intomicrosoft:mainfrom
Conversation
The expanded ChoiceSet renderer was prepending the parent label (e.g. 'What color do you want?') to every radio button and checkbox accessibility label, causing VoiceOver to repeat it redundantly with each item. The parent label is already announced as a separate accessible element above the list. Now each item announces only its own text and role, e.g.: Before: 'What color do you want?, Red, radio button' After: 'Red, radio button' Fixes microsoft#483
Collaborator
Author
VoiceOver Accessibility ValidationAutomated a11y pipeline validates this fix using real UIAccessibility API data. Annotated A11y Overlay
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Fork-based PR (no Azure Pipelines CI). When ready for CI, push branch to upstream as
users/hggzm/clean/fix-choiceset-label-repeat-483and recreate.History: upstream PRs #628 (closed)
Summary
VoiceOver was repeating the parent ChoiceSet label (e.g. "What color do you want?") with every radio button and checkbox item in expanded ChoiceSet inputs. This made navigation verbose and redundant since the label is already announced as a separate accessible element above the list.
Changes
_accessibilityString(parent label) prefix from individual cell accessibility labels inconfigureCellForAccsessibilityBefore
Each item announces: "What color do you want?, Red, radio button"
After
Each item announces: "Red, radio button"
The parent label is still accessible as a heading element above the list.
Testing