UICollectionView spacing margins

后端 未结 15 1003
一向
一向 2020-11-30 16:58

I have a UICollectionView which shows photos. I have created the collectionview using UICollectionViewFlowLayout. It works good but I would like to

15条回答
  •  挽巷
    挽巷 (楼主)
    2020-11-30 17:35

    Just to correct some wrong information in this page:

    1- minimumInteritemSpacing: The minimum spacing to use between items in the same row.

    The default value: 10.0.

    (For a vertically scrolling grid, this value represents the minimum spacing between items in the same row.)

    2- minimumLineSpacing : The minimum spacing to use between lines of items in the grid.

    Ref: http://developer.apple.com/library/ios/#documentation/uikit/reference/UICollectionViewFlowLayout_class/Reference/Reference.html

提交回复
热议问题