Monyneath MOL
Monyneath MOL

Reputation: 209

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

Upvotes: 3

Views: 504

Answers (1)

Mr.SwiftOak
Mr.SwiftOak

Reputation: 1834

You can try override preferred focus i.e.

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

Upvotes: 1

Related Questions