|
|
@@ -1044,7 +1044,7 @@
|
|
|
SuperModel *model = [[SuperModel alloc] initWithDictionary:responseObject error:nil];
|
|
|
if(model && model.status == 0){
|
|
|
[[iToast makeText:NSLocalizedString(@"delete_file_suc_msg",nil)] show];
|
|
|
- [weakSelf getFileListFun];
|
|
|
+ [weakSelf didDeleteSucFun];
|
|
|
}
|
|
|
else{
|
|
|
|
|
|
@@ -1054,5 +1054,14 @@
|
|
|
}];
|
|
|
}
|
|
|
|
|
|
+#pragma mark 删除成功
|
|
|
+- (void)didDeleteSucFun
|
|
|
+{
|
|
|
+ [_didSelectListArr removeAllObjects];
|
|
|
+ [self setEditTypeTitleFun];
|
|
|
+
|
|
|
+ [self getFileListFun];
|
|
|
+}
|
|
|
+
|
|
|
|
|
|
@end
|