I am trying to implement a catalog view for viewing videos on tvOS. It should have a UITableView with each section (or row) being a horizontal scrollable UICollectionView. Setups like these can be found on Youtube, Spotify, Podcasts, Apple Music tvOS apps.
When first launching without any adjustments, the focus engine focuses only on the parent UITableViewCells as a whole.
I then do what is said here: How to focus a UICollectionViewCell in UITableViewCell in tvOS?. I disable the focus in the UITableViewDelegate canFocusRowAt method, and now the focus guide focuses on the UICollectionViewCells, but only for the ones in the first UITableViewCell. Basically I can only focus horizontally within the first row. (I noticed that if I move pretty fast, after I focus from the last one on the screen to the side, and try to focus down it does focus on the next row, but this is not it.)
You can test the behaviour using the code here: https://github.com/dev-labs-bg/samples/tree/master/tvOS-catalogue-samples/catalogue-no-details
I also tried what is suggested here: https://developer.apple.com/forums/thread/70790, but no luck.
Thanks!