Expose room cells to voiceover on Home tab.

This commit is contained in:
Doug
2022-02-19 09:06:04 +00:00
committed by Doug
parent 9eb6990802
commit 20eae1d1bb
5 changed files with 61 additions and 4 deletions
@@ -30,6 +30,11 @@ static CGFloat const kEditionViewCornerRadius = 10.0;
self.editionViewBottomConstraint.constant = 0;
self.editionView.layer.masksToBounds = YES;
// Hide both the cell and its collection view from voiceover.
// Instead we expose the individual cells as accessibility elements.
self.isAccessibilityElement = NO;
self.collectionView.isAccessibilityElement = NO;
}
- (void)customizeTableViewCellRendering