mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-09-13 07:39:37 +00:00
21 lines
554 B
Objective-C
21 lines
554 B
Objective-C
//
|
|
// ASCollectionViewLayoutFacilitatorProtocol.h
|
|
// Pods
|
|
//
|
|
// Created by Bin Liu on 1/13/16.
|
|
//
|
|
//
|
|
|
|
#ifndef ASCollectionViewLayoutFacilitatorProtocol_h
|
|
#define ASCollectionViewLayoutFacilitatorProtocol_h
|
|
|
|
@protocol ASCollectionViewLayoutFacilitatorProtocol <NSObject>
|
|
|
|
- (void)collectionViewInsertingCellAtIndexPaths:(NSArray *)indexPaths;
|
|
- (void)collectionViewInsertingSectionsAtIndexSet:(NSIndexSet *)indexes;
|
|
- (void)collectionViewDeletingSectionsAtIndexSet:(NSIndexSet *)indexes;
|
|
|
|
@end
|
|
|
|
#endif /* ASCollectionViewLayoutFacilitatorProtocol_h */
|