I have RestKit setup nicely with a Core Data managed object backing but I have some fields which are not present on the server, only in the local model class.
How can I set these fields before the object is persisted. Is there something like a ‘willSave’ delegate method I can implement?
Thanks
I don’t quite understand what you want to accomplish, but you can override
willSavein NSManagedObject. The docs give a good explanation of what it does.