The scenario is:
- Configure
UITableViewCellusing custom content configuration. - Call
self.isAccessibilityElement = YESin the custom content view. - On iOS 16.0, the
accessibilityLabelwon't be called by VoiceOver for the configured cell.
Note the following:
- On iOS 15.x, accessibility works as expected with both
UICollectionViewCellandUITableViewCell. - Starting from iOS 16.0, accessibility is no longer working with
UITableViewCell(while it keeps working withUICollectionViewCell).
Anyone encountered similar issue?