Reputation: 209
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
Upvotes: 3
Views: 504
Reputation: 1834
You can try override preferred focus
i.e.
override var preferredFocusedView: UIView? {
return collectionView.visibleCells.first
}
Upvotes: 1