Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Remove space between sections in collectionview

How to adjust the spacing between sections of collection view.

enter image description here

like image 518
Bhanu Birani Avatar asked Feb 07 '15 19:02

Bhanu Birani


1 Answers

You can use the method to implement this:

- (UIEdgeInsets)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout insetForSectionAtIndex:(NSInteger)section 
{
    //{top, left, bottom, right}

    if ([[sectionHeaderStatusArray objectAtIndex:section] boolValue]) {
        return UIEdgeInsetsMake(23, 19, 46, 14);
    }

      return UIEdgeInsetsZero;
}
like image 62
Mayank Birani Avatar answered Sep 19 '22 20:09

Mayank Birani