当我插入新对象时,我将使用以下代码:
NSManagedObjectContext *context = [appDelegate managedObjectContext];
Favorits *favorits = [NSEntityDescription insertNewObjectForEntityForName:@"Favorits" inManagedObjectContext:context];
favorits.title = @"Some title";
NSError *error;
if (![context save:&error]) {
NSLog(@"Whoops");
}
如何更新核心数据中的现有对象?
慕桂英4014372
眼眸繁星
慕田峪4524236