Iphone - 如何从设备读取图书文件
我使用 iTunes 将 pdf 文件导入到 iPhone 设备。我验证了 pdf 文件存储在“root/user/media/books”路径中。我可以在我的程序中读取这个文件吗?
有什么办法可以读取文件吗?请帮我。
提前致谢。
I imported pdf file to iphone device using iTunes. I verified that the pdf file stored in 'root/user/media/books' path. Can i read this file in my program?
Is there any way to read the file? Please Help me.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
SDK 不提供对用户媒体库中书籍(包括 PDF)的任何访问。为了让您的应用程序能够读取通过 iTunes 添加的 PDF,需要使用 iTunes 文件共享功能将其专门添加到您的应用程序中(有关更多信息,请查找“UIFileSharingEnabled”)。您可以向 Apple 提交增强请求,尝试让他们添加对访问用户图书库的支持,但不要别指望它。
The SDK doesn’t provide any access to the books (including PDFs) in the user’s media library. For your app to read a PDF that was added via iTunes, it needs to be added to your app specifically, using the iTunes file sharing malarkey (look up “UIFileSharingEnabled” for more information on that). You can file an enhancement request with Apple to try to get them to add support for accessing the user’s book library, but don’t count on it.
这里是有关如何操作的指南在屏幕上查看 pdf。 这里是一篇关于如何使用 CGPDFScanner 解析 pdf。希望有帮助!
Here is a guide on how to view a pdf on the screen. Here is a previous post about how to parse a pdf using
CGPDFScanner
. Hope that helps!