iOS: fix in list when not combine view model cause UI have no update (#559)

This commit is contained in:
osborn
2022-12-09 16:33:00 +08:00
committed by GitHub
parent 44d971b870
commit 9be6bb2051
5 changed files with 26 additions and 16 deletions

View File

@@ -83,6 +83,8 @@ - (void)recursiveMixin:(NSDictionary *)srcModel to:(NSMutableDictionary *)target
}];
if (viewModel) {
[self recursiveMixin:subview to:viewModel];
} else {
[targetOri addObject:subview];
}
}
}