Reputation: 265
[self.managedObjectContext deleteObject:self];
Is there a problem, conceptually, with executing this line of code?
Upvotes: 4
Views: 728
Reputation:
No. The object will be removed from the MOC when it's synchronized, not now.
Upvotes: 6