mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-12-22 22:25:57 +00:00
Stub out ASCollectionDataController subclass
This commit is contained in:
committed by
Levi McCallum
parent
e492770aed
commit
e9eadac4ae
26
AsyncDisplayKit/Details/ASCollectionDataController.h
Normal file
26
AsyncDisplayKit/Details/ASCollectionDataController.h
Normal file
@@ -0,0 +1,26 @@
|
||||
//
|
||||
// ASCollectionDataController.h
|
||||
// Pods
|
||||
//
|
||||
// Created by Levi McCallum on 9/22/15.
|
||||
//
|
||||
//
|
||||
|
||||
#import <AsyncDisplayKit/ASDataController.h>
|
||||
|
||||
@class ASDisplayNode, ASCollectionDataController;
|
||||
@protocol ASDataControllerSource;
|
||||
|
||||
@protocol ASCollectionDataControllerSource <ASDataControllerSource>
|
||||
|
||||
- (ASDisplayNode *)dataController:(ASDataController *)dataController supplementaryNodeOfKind:(NSString *)kind atIndexPath:(NSIndexPath *)indexPath;
|
||||
|
||||
- (NSArray *)supplementaryKindsInDataController:(ASCollectionDataController *)dataController;
|
||||
|
||||
@end
|
||||
|
||||
@interface ASCollectionDataController : ASDataController
|
||||
|
||||
- (ASDisplayNode *)supplementaryNodeOfKind:(NSString *)kind atIndexPath:(NSIndexPath *)indexPath;
|
||||
|
||||
@end
|
||||
Reference in New Issue
Block a user