I have a UITableView
that I build in loadView
. One of the things I do in loadView
is create a UIView
to act as the table head
Voice-Over sometimes can get nasty and just by setting isAccessibilityElement
might not work.
In this case try setting accessibilityElements
on the parent view and include the child views in the array, like this:
parentView.accessibilityElements = [childView1, childView1, childView1]
Doing it also ensures that the accessibility items are being read in the order you want.