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