Nirmit Dagly
Nirmit Dagly

Reputation: 1502

reading documents from different apps on iOS

I want to ask that can I access the books which are saved in iBooks or in any other application on iOS devices. Can I import those books in my iOS apps?

I tried to use UIDocumentInteractionController but it didn't work. So, I'm looking for any other alternative solution which I can apply in my app.

Any help will be much appreciated. Thanks in advance.

Upvotes: 0

Views: 60

Answers (2)

Thomas Deniau
Thomas Deniau

Reputation: 2573

You can get access to some files outside of your app container with UIDocumentPickerViewController with iOS 8. But you'll only get access files the user chooses and that other apps have made available at the right place. This is not the case for books.

Upvotes: 0

Zee
Zee

Reputation: 1905

No, it is not possible to access the documents data of some other app (unless Jailbroken), this would be breach of security/privacy, any app who would try to do so by any means will be reject in App Store review.

Upvotes: 1

Related Questions