Reputation: 16002
I want to make the user of the app I'm developing, able to load a PDF file from his device as if he was loading an image from the gallery. Is it possible and if so, where are the PDF files ?
Thanks a lot for your advices
Upvotes: 0
Views: 144
Reputation: 1993
No, it's not possible. Every application has its own memory space (.app folder) which it can access (plus some special folders like the image gallery).
You can access your share of memory via [NSUserDefaults sharedDefaults]
.
Upvotes: 1
Reputation: 288
I think that isn't possible, see that: https://stackoverflow.com/a/7778719/1451392
Upvotes: 2