我正在尝试在 PDF 中快速构建目录。尽管显示了边界和背景颜色,但我的按钮没有显示任何文本。
let anno: PDFAnnotation = PDFAnnotation(bounds: CGRect(x: xPosition, y: yPosition, width: 300, height: 40), forType: .widget, withProperties: nil)
anno.widgetFieldType = .button
anno.backgroundColor = UIColor.white
anno.fontColor = UIColor.black
anno.alignment = NSTextAlignment.center
anno.destination = PDFDestination()
anno.fieldName = "Button Third try"
anno.widgetStringValue = "button hello?"
anno.caption = "This is a test button"
anno.draw(with: PDFDisplayBox.mediaBox, in: context.cgContext)
最终我想点击一个链接到我的 Pdf 文档中的一个页面