Cell spacing in UICollectionView

后端 未结 26 3610
旧巷少年郎
旧巷少年郎 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:39

    Define UICollectionViewDelegateFlowLayout protocol in your header file.

    Implement following method of UICollectionViewDelegateFlowLayout protocol like this:

    - (UIEdgeInsets)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout insetForSectionAtIndex:(NSInteger)section
    {
        return UIEdgeInsetsMake(5, 5, 5, 5);
    }
    

    Click Here to see Apple Documentation of UIEdgeInsetMake method.

提交回复
热议问题