mirror of
https://github.com/material-components/material-components-ios.git
synced 2026-02-20 08:27:32 +08:00
632 B
632 B
Accessibility
To help ensure your Lists are accessible to as many users as possible, please be sure to review the following recommendations:
Setting -isAccessibilityElement
It is generally recommended to set UICollectionViewCells (and UITableViewCells) as accessibilityElements. That way, VoiceOver doesn't traverse the entire cell and articulate an overwhelming amount of accessibility information for each of its subviews.
Swift
cell.isAccessibilityElement = true
Objective-C
cell.isAccessibilityElement = YES;