I'm implementing a TableView with 3 cells and every cell fits the whole screen with the following code:
func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
return self.view.frame.size.height
}
I'm trying to navigate over the cells using the VoiceOver but it does not jump to the next cell.
VoiceOver does not recognize the elements outside the screen, even if it's a TableView?
At the above example, the VoiceOver reads correctly the "Cell: 0" element, but it does not scroll to the next cell ("Cell: 1").
I couldn't find any documentation regarding Accessibility with full-screen elements such as these cells. Is there any website/docs I could take a look?
Thanks.