我正在尝试在 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)