Oliver White
Oliver White

Reputation: 265

[self.managedObjectContext deleteObject:self];

[self.managedObjectContext deleteObject:self];

Is there a problem, conceptually, with executing this line of code?

Upvotes: 4

Views: 728

Answers (1)

user23743
user23743

Reputation:

No. The object will be removed from the MOC when it's synchronized, not now.

Upvotes: 6

Related Questions