UICollectionView Horizontal Paging not centered

前端 未结 11 1690
感动是毒
感动是毒 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:33

    The code I just saw from Apple Official Guides and Sample Code:

    AssetViewController.swift:

    self.collectionView?.isPagingEnabled = true
    self.collectionView?.frame = view.frame.insetBy(dx: -20.0, dy: 0.0)
    

    this code enlarges the collection view so that it extends out of the screen, while the content is just within the screen edges

提交回复
热议问题