I recently decided to make my move to StackMob (from Parse). I have managed to setup core data and i can read and write to StackMob datastore.
So far, StackMob offers a list of item to the user. If the user decides to user an item on my app, I want the item to be available offline, so he can use it without having to connect to stackmob.
I am thinking of creating a local Core Data and copying the items that the user select there. My first problem is if i could use the same object for both Core Data (stackmob and local). And if this is the right approach to follow.
The latest sdk includes support for caching of core data. Details are In this blog post.
It also includes this code example for how to control the cache…