下载、存储、查看和管理 PDF 文件

发布于 2024-08-11 01:10:28 字数 116 浏览 3 评论 0原文

我可以下载 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

腹黑女流氓 2024-08-18 01:10:28

您可以像下载任何其他文件一样下载 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文