kid_x
kid_x

Reputation: 1475

Storing initial content in an ios app

I have an app that has lots of content initially: documents, pictures, movies; stuff that will be updatable in the future, but static initially. I'm wondering where this content should be stored, and how.

I'm thinking the content should be stored in the cache directory (as I understand it, the documents directory is meant for user-generated content?). I'm wondering if the idea here is to have those files in the main bundle and copy them over to the target directory. If not, what are some good options here?

Upvotes: 0

Views: 61

Answers (1)

David
David

Reputation: 583

Generally speaking, this might be a good reference to look at: Data Persistence

Let me know if you have a specific requirement to fulfill.

Upvotes: 1

Related Questions