I have an attribute modificationDate in my Entity A. I want to set its value whenever NSManagedObject is saved. However, if i try to do that in NSManagedObject willSave: method, i get an error:
*** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Failed to process pending changes before save. The context is still dirty after 100 attempts. Typically this recursive dirtying is caused by a bad validation method, -willSave, or notification handler.' ***
So, i’m wondering, what’s the best way to set the value of modificationDate?
From the NSManagedObject docs for willSave:
So maybe something along the lines of:
Where you can adjust the 1.0 to reflect the minimum delta between your expected save requests.