[self.managedObjectContext deleteObject:self];
开发者_如何学Python[self.managedObjectContext deleteObject:self];
Is there a problem, conceptually, with executing this line of code?
No. The object will be removed from the MOC when it's synchronized, not now.
精彩评论