Rohit Kashyap
Rohit Kashyap

Reputation: 934

Access outside the main Bundle

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,

  1. Application launches.
  2. User may select some model, say a dolphin.
  3. Application accesses that model (which is not in the applications bundle but outside somewhere in iPhone), loads it.
  4. Application displays the model.

Is it possible? Thanks in advance for any help !

Upvotes: 1

Views: 344

Answers (1)

Puneet Sharma
Puneet Sharma

Reputation: 9484

You can use sandbox of your application for this purpose. Read File System Programming Guide for more information.

Upvotes: 2

Related Questions