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
UICollectionView
minimumInteritemSpacing
Try playing around with this method:
- (UIEdgeInsets)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout insetForSectionAtIndex:(NSInteger)section { UIEdgeInsets insets = UIEdgeInsetsMake(?, ?, ?, ?); return insets; }