Using images with Core Data isn't a problem. There are a lot of examples out there on how to do that like: How should I store UIImages within my Core Data database?
I want to know how to use RestKit to download images and map them correctly to Core Data. There is a RestKit example on how to upload an image but not downloading and retrieving.
Right now my entities just have an attribute with the url to the image but I want to be able to access the images offline. I was thinking of doing some simple mapping like download an image and rename it to the id of the object it belongs to but before I recreate this wheel I was wondering if someone else knows the most 'correct' way to achieve this.