Search code examples
swifttvos

TVOS - UICollectionView inside scrollview - scrollview doesn't scroll


I have a CollectionView that is inside a contentView within a scrollview.

If I reach the second row of the collectionview that is hidden, the scrollview won't seem to scroll up to show the second row. It could be the focus that's doing this, just not sure how I can handle this.

Thanks!


Solution

  • I fixed the same issue disabling Scrolling Enabled option on particular UICollectionView.

    Now when UICollectionViewCell is focused it is scrolling properly.

    I Know this is not ideal solution but it seams to me that it's kind of bug.

    Scrolling Disabled

    Hope this helps. I'm still looking for solution without limitations.