I have an attribute in a Core Data Managed Object that I'm trying to update dependent on another attribute.
How can I implement a method that is called every time the original attribute is changed?
awakeFromInsert
and awakeFromFetch
obviously won't work.
I've seen keyPathsForValuesAffectingValueForKey
but I don't really understand how I could use it.
Thanks a bunch