I found this Q/A helpful in getting started on setting up an attribute for date modified in Core Data. In the process, I arrived at a couple of tips that might also help:
(Tip 1: avoiding willSave recursion)
- Another way to avoid a willSave loop is to write a custom routine for saving the context that iterates through its updatedObjects looking for those that have a dateModified property and setting it. Do the actual calls to
commitEditing and save after that loop. Don't bother with willSave at all.
(Tip 2: live updating — but won’t work with undo)
If you need live updating to display the date modified to the user in a table, you can also set the dateModified in your switch-case (or whatever) for the date-modified column in your objectValueForTableColumn delegate method (willDisplayCell for iOS).
There, test if the object for that row isUpdated and, if so, set the dateModified. I doubt that the if (obj isUpdated) check is very expensive. But be sure to do this only for the relevant column so as not to repeat it unnecessarily.
Return whatever string representation you are using for the column. To avoid obvious disparities between the time of the actual modification and the date set, show only the date, not the time.
This will cause dateModified to be updated whenever the user makes a table selection, as well as when the table is reloaded. Which is not perfect -- if user modifies an attribute that is not represented in the table, the column won't update until they make a selection. But it's reasonably responsive and a lot easier than implementing an extensive KVO scheme.
(You will still want to set the date in the save routine, to catch modifications which are invisible to the table.)
UNDO COMPLICATION: Unfortunately, the undo manager will consider the table delegate method’s change to dateModifed as an event unto itself.
Subsequently calling undo simply undoes the last change to dateModified — over and over again. I tried overcoming this by adding a tracker and a check for a non-empty changedValues dictionary to ensure that the dateModified got set only once pre-save. That worked for undoing deletions, but not for regular edits. So there’s no quick way of accomplishing live updating of dateModified pre-save.