Add custom collection view layout example project

This commit is contained in:
Levi McCallum
2015-11-23 14:01:54 -08:00
parent c1539bda6e
commit 36d24950e0
51 changed files with 1482 additions and 3 deletions

View File

@@ -49,6 +49,12 @@
#pragma mark - ASCollectionViewLayoutInspecting
- (ASSizeRange)collectionView:(ASCollectionView *)collectionView constrainedSizeForNodeAtIndexPath:(NSIndexPath *)indexPath
{
// TODO: Provide constrained size for flow layout item nodes
return ASSizeRangeMake(CGSizeZero, CGSizeZero);
}
- (ASSizeRange)collectionView:(ASCollectionView *)collectionView constrainedSizeForSupplementaryNodeOfKind:(NSString *)kind atIndexPath:(NSIndexPath *)indexPath
{
CGSize constrainedSize;