Cell spacing in UICollectionView

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

    Try playing around with this method:

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

提交回复
热议问题