Hello,
I keep track of my 'objects' using the isUpdated instance method of NSManagedObject Class.
When I'm modifying an exisiting object, it works.
If I create a new object using for example:
[NSEntityDescription insertNewObjectForEntityForName:@"Entity" inManagedObjectContext:managedObjectContext]
I can't use the isUpdated, I have to use the isInserted.
This works, but what I want to check, if the object has been modified with new data.
isInserted will return FALSE no matter if the object has been changed or not, it only take care if has been inserted or not ...
what can I use ? I can track the initial state of the object properties but I would prefer the isUpdated approach.
thanks!!!
r.