Cell spacing in UICollectionView

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

    Try this code to ensure you have a spacing of 5px between each item:

    - (UIEdgeInsets)collectionView:(UICollectionView *) collectionView 
                            layout:(UICollectionViewLayout *) collectionViewLayout 
            insetForSectionAtIndex:(NSInteger) section {
    
        return UIEdgeInsetsMake(0, 0, 0, 5); // top, left, bottom, right
    }
    
    - (CGFloat)collectionView:(UICollectionView *) collectionView
                       layout:(UICollectionViewLayout *) collectionViewLayout
      minimumInteritemSpacingForSectionAtIndex:(NSInteger) section {    
        return 5.0;
    }
    

提交回复
热议问题