|
@@ -261,6 +261,15 @@
|
|
|
|
|
|
_curCouldPhoneFileListMod = [[couldPhoneFileListModel alloc] initWithDictionary:dataDict error:nil];
|
|
|
|
|
|
+ NSMutableArray *filterArr = [NSMutableArray new];
|
|
|
+ for (couldPhoneFileModel*model in _curCouldPhoneFileListMod.data.list) {
|
|
|
+ if(model.length > 1024){
|
|
|
+ [filterArr addObject:model];
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ _curCouldPhoneFileListMod.data.list = filterArr;
|
|
|
+
|
|
|
[self.tableView reloadData];
|
|
|
|
|
|
[self gotoDownThumbnailManagerFun];
|