Swift PDFKit - PDFAnnotation 按钮不显示文本

问题描述

我正在尝试快速在 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 文档中的页面

解决方法

您需要将 widgetControlType 设置为 .pushButtonControl

anno.widgetControlType = .pushButtonControl

Apple sample code 演示了如何将小部件添加到 PDF 中,值得一试。

相关问答

错误1:Request method ‘DELETE‘ not supported 错误还原:...
错误1:启动docker镜像时报错:Error response from daemon:...
错误1:private field ‘xxx‘ is never assigned 按Alt...
报错如下,通过源不能下载,最后警告pip需升级版本 Requirem...