如何在 Objective-C 中显示 PDF?
如何在 Objective-C 中读取和显示 PDF?
How to read and display PDF in Objective-C?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何在 Objective-C 中读取和显示 PDF?
How to read and display PDF in Objective-C?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
如果您只想显示它,最简单的方法是将其加载到 UIWebView 中。
If you just want to display it, the easiest way is to load it in a UIWebView.
如果您只想向用户阅读和显示 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.
最简单的方法是使用 UIDocumentInteractionController
缺点:你需要一个本地文件 URL
the easiset way is with the UIDocumentInteractionController
Drawback: you need a local file-url