initial design

This commit is contained in:
Bin Liu
2016-01-14 15:46:20 -08:00
parent 3aceabbbf9
commit da2cbf4644
3 changed files with 36 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
//
// 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 */