UICollectionView Horizontal Paging not centered

前端 未结 11 1695
感动是毒
感动是毒 2020-12-02 09:32

I have a horizontal scrolling collectionView with each cell the size of the view. When I page through the collectionView it doesn\'t page by cell. The cells aren\'t in the c

11条回答
  •  不知归路
    2020-12-02 09:49

    Swift 4 solution to remove line spacing to keep cells centered:

    public func collectionView(_ collectionView: UICollectionView, layout 
    collectionViewLayout: UICollectionViewLayout, 
    minimumLineSpacingForSectionAt section: Int) -> CGFloat {
        return 0
    }
    

提交回复
热议问题