Cell spacing in UICollectionView

后端 未结 26 3285
旧巷少年郎
旧巷少年郎 2020-11-22 15:53

How do I set cell spacing in a section of UICollectionView? I know there is a property minimumInteritemSpacing I have set it to 5.0 still the spaci

26条回答
  •  失恋的感觉
    2020-11-22 16:32

    I have found very easy way to configure spacing between cells or rows by using IB.

    Just select UICollectionView from storyboard/Xib file and click in Size Inspector as specified in below image.

    For configuring space programatically use following properties.

    1) For setting space between rows.

    [self.collectionView setMinimumLineSpacing:5];
    

    2) For setting space between items/cells.

    [self.collectionView setMinimumInteritemSpacing:5];
    

提交回复
热议问题