Add support for sectionInset in ASCollectionView in property and delegate form

This commit is contained in:
Levi McCallum
2015-08-03 14:36:29 -07:00
parent 16ed66c3a1
commit 5eb75d6bc7
3 changed files with 27 additions and 2 deletions

View File

@@ -95,4 +95,8 @@
[context completeBatchFetching:YES];
}
- (UIEdgeInsets)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout insetForSectionAtIndex:(NSInteger)section {
return UIEdgeInsetsMake(20.0, 20.0, 20.0, 20.0);
}
@end