Reputation: 5773
I'm new to writing iPhone applications. I'm writing an application to read and write all kinds of text and image files. I have read that an iPhone application can only read and write read from files in their sandboxed tmp and documents folders.
Is there a common folder in iPhone to place files so that they can be read by any other application?
Upvotes: 0
Views: 436
Reputation: 7143
AFAIK there is no such "common folder". However, from Apple's docs:
To share files between applications, use a document interaction controller object.
Not sure if that's what you want, but it seems like the closest you can get. More info here.
Upvotes: 1