下载、存储、查看和管理 PDF 文件
我可以下载 PDF 文件并在不使用 UIWebView 的情况下显示它吗? 我需要显示 PDF 并完全控制其显示...
另外,我可以下载 PDF 并将其存储到文件系统应用程序中吗?
谢谢
Can I download a PDF file and shows it without use UIWebView?
I need to show PDF and get full control of its show...
Also, Can I download and strore PDF into filesystem app?
Thx
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以像下载任何其他文件一样下载 PDF,使用 NSURLConnection 或 NSData 的 +dataWithContentsOfURL: 方法。该文件将存储在应用程序的沙盒文档目录中。文件系统上的其他应用程序将无法访问它。
至于不使用 UIWebView 查看 PDF,可以使用 CGPDFDocument 来完成,如 这个问题。
You can download a PDF the same way as you would download any other file, using an NSURLConnection or NSData's +dataWithContentsOfURL: method. This file will be stored within your application's sandboxed documents directory. Other applications on the filesystem will not have access to it.
As far as viewing the PDF without using UIWebView, this can be accomplished using CGPDFDocument, as described in the answers to this question.