Reputation: 129
i am developing an iPad application. in this application i am downloading the pdf from web. is it possible to open this pdf from another readers like adobe. i am saving the pdf in my custom directory.
if so how can i code in my application to open the pdf from another application
Upvotes: 0
Views: 163
Reputation: 7809
You can export your PDF to other application via the UIDocumentInteractionController.
Otherwise as @Björn Kaiser said, each application's storage is jailed and cannot be accessed by other application.
Upvotes: 2