[ASTableNode/ASCollectionNode] Make them conform directly to range updating protocol

This commit is contained in:
Adlai Holler
2016-07-14 11:27:32 -07:00
parent bd0254f306
commit b0a2ba0f6d
2 changed files with 2 additions and 10 deletions

View File

@@ -27,7 +27,7 @@ NS_ASSUME_NONNULL_BEGIN
* ASCollectionNode is a node based class that wraps an ASCollectionView. It can be used
* as a subnode of another node, and provide room for many (great) features and improvements later on.
*/
@interface ASCollectionNode : ASDisplayNode
@interface ASCollectionNode : ASDisplayNode <ASRangeControllerUpdateRangeProtocol>
- (instancetype)initWithCollectionViewLayout:(UICollectionViewLayout *)layout;
- (instancetype)initWithFrame:(CGRect)frame collectionViewLayout:(UICollectionViewLayout *)layout;
@@ -111,8 +111,4 @@ NS_ASSUME_NONNULL_BEGIN
@end
@interface ASCollectionNode (ASRangeControllerUpdateRangeProtocol) <ASRangeControllerUpdateRangeProtocol>
@end
NS_ASSUME_NONNULL_END