_objectManager.objectStore =objectstore; //remove this line
When I remove this line, the new records are not saved in DB but the mapping is done and the following method is called with NSManaged objects
- (void)objectLoader:(RKObjectLoader*)objectLoader didLoadObjects:(NSArray*)objects
I was planing to make my own logic to add / remove objects in local DB in that method... but the [objectstore save: &error] does not save my NSManaged objects...
Any idea ?