123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- #import <Foundation/Foundation.h>
- @interface CCSectionDataSourceMetadata : 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;
- - (id)copyWithZone:(NSZone *)zone;
- @end
- @interface CCSectionMetadata : NSObject
- + (CCSectionDataSourceMetadata *)creataDataSourseSectionMetadata:(NSArray *)arrayMetadatas listProgressMetadata:(NSMutableDictionary *)listProgressMetadata groupByField:(NSString *)groupByField filterFileID:(NSArray *)filterFileID filterTypeFileImage:(BOOL)filterTypeFileImage filterTypeFileVideo:(BOOL)filterTypeFileVideo sorted:(NSString *)sorted ascending:(BOOL)ascending activeAccount:(NSString *)activeAccount;
- + (void)removeAllObjectsSectionDataSource:(CCSectionDataSourceMetadata *)sectionDataSource;
- @end
- @interface CCSectionDataSourceActivity : NSObject
- @property (nonatomic, strong) NSMutableArray *sections;
- @property (nonatomic, strong) NSMutableDictionary *sectionArrayRow;
- @end
- @interface CCSectionActivity : NSObject
- + (CCSectionDataSourceActivity *)creataDataSourseSectionActivity:(NSArray *)records activeAccount:(NSString *)activeAccount;
- @end
|