UICollectionView - Scrolling to first cell

后端 未结 8 1571
一生所求
一生所求 2021-02-12 18:00

I\'m making use of UICollectionView and I need to scroll to first cell after click in a button.

The button is located in a (big) header section in my collection view...

8条回答
  •  不知归路
    2021-02-12 18:17

    if let indexPath = self.collectionView?.indexPathForItem(at: CGPoint(x: 0, y: 0)) {
                self.collectionView?.scrollToItem(at: indexPath, at: .top, animated: false)
    }
    

提交回复
热议问题