我正在我的应用中实现撤消/重做机制。这适用于很多情况。但是,我无法撤消过去的deleteObject:。该对象被正确保存在撤消队列中,并且在调用undo时我将其恢复并重新进入Core Data堆栈。问题是当我删除它时,它的所有属性都被设置为nil。
我有一个实体“Canvas”,它与“Graphic”实体之间有一个叫做“graphics”的多对多关系,它的反转设置为“canvas”。删除图形,然后将其插回,不起作用。这是代码(重做方法基本相同):
- (void)deleteGraphic:(id)aGraphic {
//NSLog(@"undo drawing");
//Prepare the undo/redo
[self.undoManager beginUndoGrouping];
[self.undoManager setActionName:@"Delete Graphic"];
[[self.detailItem valueForKey:@"graphics"] removeObject:aGraphic];
[[self managedObjectContext] deleteObject:aGraphic];
//End undo/redo
[self.undoManager registerUndoWithTarget:self selector:@selector(insertGraphic:) object:aGraphic];
[self.undoManager endUndoGrouping];
NSLog(@"graphics are %@", [self sortedGraphics]);
//Update drawing
[self.quartzView setNeedsDisplay];
}
这就是好事:
删除前:
graphics are (
<NSManagedObject: 0x1cc3f0> (entity: Graphic; id: 0x1c05f0 <x-coredata:///Graphic/t840FE8AD-F2E7-4214-822F-7994FF93D4754> ; data: {
canvas = 0x162b70 <x-coredata://A919979E-75AD-474D-9561-E0E8F3388718/Canvas/p20>;
content = <62706c69 73743030 d4010203 04050609 0a582476 65727369 6f6e5424 746f7059 24617263 68697665 7258246f 626a6563 7473>;
frameRect = nil;
label = nil;
order = 1;
path = "(...not nil..)";
traits = "(...not nil..)";
type = Path;
})
重做之后:
graphics are (
<NSManagedObject: 0x1cc3f0> (entity: Graphic; id: 0x1c05f0 <x-coredata:///Graphic/t840FE8AD-F2E7-4214-822F-7994FF93D4754> ; data: {
canvas = nil;
content = nil;
frameRect = nil;
label = nil;
order = 0;
path = nil;
traits = nil;
type = nil;
}),
你可以看到它是同一个对象,只是被Core Data彻底搞砸了。关系删除rouls显然与它无关,因为我在测试中将它们设置为“无操作”。
答案 0 :(得分:2)
好吧,我对修复不满意,但有一种方法是在删除对象之前对上下文执行[moc save]。不幸的是,在撤销/重做情况下,这意味着我必须在每次操作后保存,这不是最理想的,但修复了这个问题。