Search code examples
iosswifttvos

TVOS Focus between collectionview cell to another


I have a nested Collectionview which like the image below. I am wonder if I can change focus just like the image below? Thanks before hand

current behavior enter image description here

Expected behavior enter image description here


Solution

  • You can try override preferred focus i.e.

    override var preferredFocusedView: UIView? {
        return collectionView.visibleCells.first
    }