Use ASCellNodes for supplementary nodes

This commit is contained in:
Levi McCallum
2015-10-11 10:47:35 -07:00
parent 0870d50e36
commit fddb0061b0
10 changed files with 19 additions and 19 deletions

View File

@@ -17,7 +17,7 @@
@protocol ASCollectionDataControllerSource <ASDataControllerSource>
- (ASDisplayNode *)dataController:(ASCollectionDataController *)dataController supplementaryNodeOfKind:(NSString *)kind atIndexPath:(NSIndexPath *)indexPath;
- (ASCellNode *)dataController:(ASCollectionDataController *)dataController supplementaryNodeOfKind:(NSString *)kind atIndexPath:(NSIndexPath *)indexPath;
/**
The constrained size range for layout.
@@ -34,6 +34,6 @@
@interface ASCollectionDataController : ASDataController
- (ASDisplayNode *)supplementaryNodeOfKind:(NSString *)kind atIndexPath:(NSIndexPath *)indexPath;
- (ASCellNode *)supplementaryNodeOfKind:(NSString *)kind atIndexPath:(NSIndexPath *)indexPath;
@end