I'm having a custom UITableViewCell
and it contains some labels and imageViews
. Now everything works great except when voice over is turned on.
The accessibility
label is spoken like excepted but when it's not possible to click on the row it just repeats the label. So the user can't select the row.
didSelectIndexPath
is not called. This is not the case when voice over is turned off.
I found a topic and they solve it with setting isAccessibilityElement
to true on the cell. This indeed solves the problem but creates another problem that the accessibility label is not spoken anymore it just says selection and not the label anymore.
how can I solve this?