Reputation: 2822
I'm making an iOS app that will have updatable content, and I want to include some initial content with the app installation. Knowing content placed in the main bundle can't be modified, where should I store this initial content, and how could I get it there, short of downloading it on initial launch?
Upvotes: 0
Views: 64
Reputation: 60130
Content in the main bundle can't be modified, but it can certainly be copied to your user's documents folder and used from there. In your -applicationDidFinishLaunching:
or similar on-startup method, you can:
Upvotes: 1