如何在 Objective-C 中显示 PDF?

发布于 2024-11-15 11:29:39 字数 34 浏览 2 评论 0原文

如何在 Objective-C 中读取和显示 PDF?

How to read and display PDF in Objective-C?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

一场信仰旅途 2024-11-22 11:29:39

如果您只想显示它,最简单的方法是将其加载到 UIWebView 中。

If you just want to display it, the easiest way is to load it in a UIWebView.

韬韬不绝 2024-11-22 11:29:39

如果您只想向用户阅读和显示 PDF,就像 iOS 设备上的邮件应用程序那样,为您完成所有滚动和缩放,那么我会使用 UIDocumentInteractionController。

http://developer.apple.com /library/ios/#documentation/uikit/reference/UIDocumentInteractionController_class/Reference/Reference.html

您会在我的其中一个中找到一些有用的代码最近的问题,在这里:

UIDocumentInteractionController 退出时崩溃

希望这有帮助。

If you want to solely read and display PDFs to users, as the Mail app does on your iOS device with all the scrolling and zooming done for you, then I would use a UIDocumentInteractionController.

http://developer.apple.com/library/ios/#documentation/uikit/reference/UIDocumentInteractionController_class/Reference/Reference.html

You'll find some useful code in one of my recent questions, here:

UIDocumentInteractionController crashing upon exit

Hope this helps.

往日 2024-11-22 11:29:39

最简单的方法是使用 UIDocumentInteractionController

缺点:你需要一个本地文件 URL

the easiset way is with the UIDocumentInteractionController

Drawback: you need a local file-url

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