|
@@ -88,9 +88,10 @@
|
|
if (!_lastFileListArr) { // 内存没有
|
|
if (!_lastFileListArr) { // 内存没有
|
|
NSMutableArray *dataArr = [NSMutableArray new];
|
|
NSMutableArray *dataArr = [NSMutableArray new];
|
|
if (self.lastFileList) {
|
|
if (self.lastFileList) {
|
|
-
|
|
|
|
- for (NSString *key in self.lastFileList) {
|
|
|
|
- NSDictionary *dict = self.lastFileList[key];
|
|
|
|
|
|
+
|
|
|
|
+ NSDictionary *preLastFileList = [NSDictionary dictionaryWithDictionary:self.lastFileList];
|
|
|
|
+ for (NSString *key in preLastFileList) {
|
|
|
|
+ NSDictionary *dict = preLastFileList[key];
|
|
|
|
|
|
lastFileModel *model = [lastFileModel mj_objectWithKeyValues:dict];
|
|
lastFileModel *model = [lastFileModel mj_objectWithKeyValues:dict];
|
|
if(model){
|
|
if(model){
|