Преглед изворни кода

1.过滤掉小于1K的文件

huangxiaodong пре 1 година
родитељ
комит
e10aa5d578

+ 9 - 0
创维盒子/双子星云手机/Class/Set/uploadFile/downLoadFile/downLoadPreviewViewController.m

@@ -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];