Reputation: 83
I have to build an iPhone app that every X days has an online sync with a web service, it downloads X images and saves them into the device.
Then, in offline mode, I have to load the images on a table view.
I was thinking about the Core Data storage, is that possible? Maybe storing images in core data database will slow down the app?
Upvotes: 0
Views: 295
Reputation: 6302
I tried something similar but found Core Data unsuitable. If I were you I would keep the references to the images in CD but store the images themselves as they are.
Upvotes: 0