如何在 iPhone 上制作包含数据表的 PDF 文档?
我需要一种在横向模式下创建数据表的方法。该表应该是 PDF 格式,这在 iPhone 上可行吗?如果是这样,有人可以建议如何做吗?如果没有,我还有什么其他选择?
I need a way of creating a table of data in landscape mode. This table should be in PDF form, is this possible on iPhone? If so please can someone advise on how to do it? If not, what are my other options?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我相信以下链接肯定会帮助您在循环中使用
drawLine
方法创建表格。您可以简单地修改drawLine
方法并实现为您绘制表格。此外,该代码非常方便与可定制的 PDF 创建方法一起使用。http://www.ioslearner.com/generate-pdf-programmatically-iphoneipad/< /a>
如需更多帮助,您可以参考上一篇帖子。
I believe following link would definitely help you to create table using
drawLine
method in a loop. You can simply modify thedrawLine
method and implement to draw table for you. Also the code is very Handy to use with a very customizable methods for PDF creation.http://www.ioslearner.com/generate-pdf-programmatically-iphoneipad/
For more help you can refer previous post.
在 UIWebView 中创建表格,然后按照此链接从 UIWebView 制作 pdf
http://coderchrismills.wordpress.com/2011/06/25/making-a-pdf-from-a-uiwebview/
create your table in UIWebView and then follow this link to make pdf from UIWebView
http://coderchrismills.wordpress.com/2011/06/25/making-a-pdf-from-a-uiwebview/
最简单的是使用 HTML。您可以在 Objective-C 中完成所有文本处理,并在简单的 UIWebView 中显示表格。这也让您可以很好地控制它的外观。
Easiest is using HTML. You can do all the text processing in objective-C and display the table in a simple
UIWebView
. This also gives you great control over how it is going to look.