我已经用服务器中的一些数据填充了一个表视图并将其保存到核心数据中。现在,当用户单击表视图中的删除选项时,我必须从核心数据中删除对象。我试过的是这样的:`
-(void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{
NSError *error;
[[Server serverInfo].context deleteObject:[self.couponList objectAtIndex:indexPath.row]];
if(![ [Server serverInfo].context save:&error]) {
// Handle error
NSLog(@"Unresolved error series %@, %@", error, [error userInfo]);
}
[self.couponList removeObjectAtIndex:indexPath.row];
[tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath]
withRowAnimation:UITableViewRowAnimationFade];
if ([self.couponList count]==0) {
[self.table setEditing:NO animated:YES];
[self.editBt setStyle:UIBarButtonItemStyleBordered];
}
}
` 但它给出了一个异常并崩溃。这是我在日志中得到的:“由于未捕获的异常'NSInvalidArgumentException'而终止应用程序,原因:'NSManagedObjectContext 无法删除其他上下文中的对象”。'任何人都可以解决这个问题吗?谢谢进步