我正在尝试在pdfView中为小部件类型文本添加注释图标。我已经使用了iconType属性。但是该图标未显示。非常感谢您的帮助。
let annotationBounds = CGRect(x: 169, y: 400, width: 40, height: 40)
let commentAnnotation = PDFAnnotation(bounds: annotationBounds, forType: .text, withProperties: nil)
commentAnnotation.iconType = .note
pdfView.currentPage?.addAnnotation(commentAnnotation)