TPPDF ios中每个页面的页脚

  • 本文关键字:ios TPPDF ios swift tppdf
  • 更新时间 :
  • 英文 :


我可以在iOS中使用TPPDF库在pdf中添加页脚。但是我不能在PDF的每一页都保留页脚。有同样的解决方案吗?

以下是我如何使用页脚:

**let attributedString=NSAttributedString(字符串:"第1页,共1页",属性:regularTextAttributes(

文件?。add(.footerLeft,attributedText:attributedString(**

您是使用单个PDFDocument实例,还是为最终生成文档中的每个页面都使用不同的实例?根据我所看到的,当你添加页脚时,整个文档(PDFDocument实例(和通过PDFGenerator生成最终文档是一样的,但如果你使用一个文档数组(许多PDFDocuments(并通过PDFMultiDocumentGenerator生成最终文档,那么你需要将页脚添加到每个PDFDocument

注意:如果您使用PDFMultiDocumentGenerator,您可能会遇到文档默认分页的问题,并且需要手动处理分页的";页面";以及";合计";使用customClosurePDFPaginationStyle

相关内容

  • 没有找到相关文章

最新更新