我在我的应用程序中使用核心数据。当我用[context deleteObject:obj]
删除对象时,不会仅使用空字段删除对象。如何永久删除对象?提前致谢。我使用表视图,当这个视图充满来自核心数据的数据时,有空行被删除的对象。这是代码:
LNAppDelegate *appDelegate = [[UIApplication sharedApplication] delegate];
self.context = [appDelegate managedObjectContext];
self.accounts = [[NSArray alloc] init];
NSFetchRequest *fetchRequest = [[NSFetchRequest alloc] init];
NSEntityDescription *entity = [NSEntityDescription
entityForName:@"Accounts" inManagedObjectContext:self.context];
[fetchRequest setEntity:entity];
NSError *error;
self.accounts = [self.context executeFetchRequest:fetchRequest error:&error];
答案 0 :(得分:4)
您是否确保在进行更改后保存上下文?
NSError *error = nil;
if(![self.managedObjectContext save:&error])
{
/*
//Handle error
*/
NSLog(@"Unresolved error %@, %@", error, [error userInfo]);
}
还要确保引用正确的上下文,因为您可以有多个。