Tengo un atributo modificationDate
en mi Entity A.
Quiero establecer su valor siempre que NSManagedObject
se guarde. Sin embargo, si trato de hacer eso en NSManagedObject
willSave:
método, me sale un error:Core-Data willSave: método
*** 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.' ***
Por lo tanto, me pregunto, ¿cuál es la mejor manera de establecer el valor de modificationDate
?
es necesario comprobar también si modificationDate está en el chang edValues – malhal