电子书应用程序的 PDF 解析
寻求一些有关使用 UIWebView 与 CGPDF 的优缺点的帮助来创建电子书阅读器应用程序。内容将采用 PDF 形式,因此我试图找出两个 API 中哪一个 - UIWebView 或 CGPDF 效果最好。 我的目标是缩放、目录、注释和注释以及搜索等功能。
Looking for some help on the pros and cons of using UIWebView vs. CGPDF for the purpose of creating an eBook reader app. The content would be in the form of PDF, thus I am trying to figure out which of the two API's - UIWebView or CGPDF would work the best.
I'm targeting features like zoom, table of contents, notes and annotations, and search.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您正在寻找搜索、注释、目录等...您必须使用 CGPDF*。 UIWebView 不包含这些的实现。即便如此,CGPDF 仍然会受到一定的限制,并且通常非常令人沮丧:)
另一方面,UIWebView 显然使用起来要简单得多。
If you are looking for search, annotations, table of contents, etc...you have to use CGPDF*. UIWebView does not contain implementation for those. Even then, CGPDF can be limited somewhat and is generally pretty frustrating :)
On the other hand, UIWebView is obviously much simpler to use.