Chatar Veer Suthar
Chatar Veer Suthar

Reputation: 15639

How can I save images to iphone directory and retrieve it?

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

Answers (2)

Jhaliya - Praveen Sharma
Jhaliya - Praveen Sharma

Reputation: 31730

you also have choice to save the image in sqlite3 database and retrieve it when needed.

Upvotes: 1

zrzka
zrzka

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

Related Questions