Zubair
Zubair

Reputation: 6203

UICollectionView, cells are overlapped by Navigation bar

enter image description here

Want to remove the space below the collectionView cells:

UICollectionViewFlowLayout *flowLayout = [[UICollectionViewFlowLayout alloc] init];
[flowLayout setItemSize:CGSizeMake(300, 435)];
[flowLayout setMinimumInteritemSpacing:0.0f];
[flowLayout setMinimumLineSpacing:20.0f];
[flowLayout setSectionInset:UIEdgeInsetsMake(0, 10, 0, 10)];

[flowLayout setScrollDirection:UICollectionViewScrollDirectionHorizontal];

[self.collectionView setCollectionViewLayout:flowLayout];

Upvotes: 2

Views: 379

Answers (1)

user623396
user623396

Reputation: 1547

Try adding this in -viewDidLoad:

if ([self respondsToSelector:@selector(edgesForExtendedLayout)])
    self.edgesForExtendedLayout = UIRectEdgeNone;

Upvotes: 3

Related Questions