iPad 应用程序:将 PDF 文件合并为 1 个 PDF 文档/创建多页滚动视图的 PDF 文档
我正在编写一个 iPad 应用程序,它使用带有页面控制的滚动视图。 我需要将所有页面创建为 1 个 PDF 文件。 到目前为止,我认为我应该循环遍历所有子视图(页面)并为每个子视图(使用 CGPDFContext)创建 PDF 文件。但我确实需要将所有文件合并为 1 个 PDF 文档。你能帮我这样做吗?
或者,如果您有更好的方法从该滚动视图创建包含多个页面的 PDF 文档,那就更好了!
请帮忙。我到处搜索了一下,发现Mac OS有一些使用PDFDocument、insertPage功能的东西。我在iOS上找不到类似的方法?
I am writing an iPad application which uses a scrollview with page control.
I need to create a PDF of all the pages as 1 PDF file.
So far, I figured that I should loop through all the sub-views (pages) and create PDF files for each (using CGPDFContext). BUT I do need to combine all the files into 1 PDF document. Can you help me to do so??
OR if you have a better way to create a PDF document with multiple pages from this scrollview, that would even be better!!
Please help. I've searched everywhere and saw that Mac OS has something using PDFDocument, insertPage function. I can't find a similar method for iOS??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
创建多部分 PDF:
希望这会有所帮助。
to create a multi-part PDF:
Hope this helps.