Reputation: 15639
I want to save image in iphone album and retrieve them on particular index, how can I?
I have to save profile of many people, along with their images, so how can I access such concept?
Upvotes: 0
Views: 564
Reputation: 31730
you also have choice to save the image in sqlite3 database and retrieve it when needed.
Upvotes: 1
Reputation: 21249
Do not save images in iPhone album if they're your application related only.
The better way is to create directory in your application documents directory and store them there. Or even better, do use CoreData and transient property to store image on your disk to keep your data well organized.
Upvotes: 2