Reputation: 934
I want a functionality in which my application can access resources outside its own bundle, for example: there are bunch of '3d Models' which are kept somewhere in iPhone memory (not in applications bundle), in runtime I want to load it and show it in my application,
Is it possible? Thanks in advance for any help !
Upvotes: 1
Views: 344
Reputation: 9484
You can use sandbox of your application for this purpose. Read File System Programming Guide for more information.
Upvotes: 2