I am searching for more information on how to use AFIncrementalStore
. I need to know how to implement it step by step.
If I understood right AFIncrementalStore
it is a layer for fetching data from the server and for the mapping data model. Am I right?
So I have few URL that I need to mapping into my local model. All of them use GET requests.
For example base_url/api/categories
I get this string in response:
[{"category":{"name":"3d max","id":"1111001","users":[]}},
{"category":{"name":"photoshop","id":"1111002","users":[]}},
{"category":{"name":"auto cad","id":"1111003","users":[]}}]
So, how I can binding my local db with this data using AFIncrementalStore? Also if you can see there are relationships in the response string that are connected to uses. The array for users will contain id that is correspond to concert users. So I think second question is how to point that model has to have relationship.
I have found this explanation:
link
But can I pull data from the server and how it understands that afincremenalstore needs to pull data for entity for example from
http://api/categories
or in another casehttp://api/photo
for the Photo entity?