1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- #import <Foundation/Foundation.h>
- @interface CCSectionDataSource : NSObject
-
- @property (nonatomic, strong) NSMutableDictionary *allRecordsDataSource;
- @property (nonatomic, strong) NSMutableArray *allFileID;
- @property (nonatomic, strong) NSMutableArray *sections;
- @property (nonatomic, strong) NSMutableDictionary *sectionArrayRow;
- @property (nonatomic, strong) NSMutableDictionary *fileIDIndexPath;
- @property NSInteger video;
- @property NSInteger image;
- @property NSInteger directories;
- @property NSInteger files;
- @property double totalSize;
- @end
- @interface CCSection : NSObject
- + (CCSectionDataSource *)creataDataSourseSectionTableMetadata:(NSArray *)records listProgressMetadata:(NSMutableDictionary *)listProgressMetadata groupByField:(NSString *)groupByField replaceDateToExifDate:(BOOL)replaceDateToExifDate activeAccount:(NSString *)activeAccount;
- + (void)removeAllObjectsSectionDataSource:(CCSectionDataSource *)sectionDataSource;
- @end
|