Wildchild89
Wildchild89

Reputation: 83

Load offline images stored in iPhone

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

Answers (1)

AMAN77
AMAN77

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

Related Questions