I’m trying to figure out how my new app should handle data.
In previous projects i’ve avoided core data due to the learning curve and I’ve ended up using arrays.
However, this project is a little more complicated.
There’s a remote server which provides json content.
I’ve already got the custom authentication written.
The server will aggregate the data.
I’m worried about performance, having to access the server each time I want to get any data.
However, my main question is, can i use coredata as a kind of wrapper rather than having a local database / datastore ?
CoreData can have as backing store: XML, SQLite, Binary and Memory.. So you can use an in-memory store… if this is your question…