There are 2 answers on SO concerning this, but neither seem to work any longer.
I have a custom UITableViewCell. There are various labels laid out on this cell. VoiceOver for Accessibility reads things Left to Right, Top to Bottom.
This is an issue for the layout of my cell. I need things to be read in a specific order.
However, I don't seem to be able to change the order in which VoiceOver reads things by default.
I've tried self.accessibilityElements = @[self.view5, self.view1, self.view9]
for example, but this does not change order.