Is there a way to force a managed object into the dirty state? I have a managed object that has a relationship to a parent managed object. If I change a property on the child managed object, I was curious if there is a way to put the parent managed object into a dirty state.
|
feedback
|
If these aren't possible, then you can either have the parent observe changes in its children, or have children set a changed flag on their parent. In either case, you can modify some "last changed" property to cause yourself to become dirty. You can also create a method like But if at all possible, you should use the document classes, since this is what they're for. You may also be interested in Core Data Questions--Relationships, UUIDs, and Dirty States. | |||||
feedback
|