Hello,
As the title of the post mentions I am using CoreData with a web service. As such I would like to be able to call custom -save: and -executeFetchRequest: methods on the managedObjectContext so that when local objects are saved or fetched, a request to the web service is also kicked off.
I think the best way to accomplish this is to subclass SCCoreDataStore. My question is which methods should I over write? So far it looks like I should over write -commitData for saves and either -fetchObjectsWithOptions: or -asynchronousFetchObjectsWithOptions:success:failure. Would that cover all save/fetch requests that STV is making when it auto-generates detailViews, etc?
Thanks,
Aaron