How to center a UICollectionView when it is tapped?

前端 未结 4 791
说谎
说谎 2021-02-01 08:25

I have a UICollectionView and it has quite a lot of UICollectionViewCells on it. I want to scroll the cell to the centre of the UICollectionView<

4条回答
  •  日久生厌
    2021-02-01 08:39

    You can use scrollToItemAtIndexPath method to put selected(tapped) cell to center position in UICollectionView

    [collectionView scrollToItemAtIndexPath:indexPath
                           atScrollPosition:UICollectionViewScrollPositionCenteredHorizontally
                                   animated:true];
    

    You can use UICollectionViewScrollPositionCenteredVertically for vertical centered position

提交回复
热议问题