对于包含注释的PDFDocument
和widgetFieldType
为PDFAnnotationWidgetSubtype.text
和PDFAnnotationWidgetSubtype.button
的ojit_code,是否可以禁用这些注释的用户交互(即,单击复选框不会导致其切换)?
最佳答案
您可以尝试以下操作(针对第一页):
pdfView.document?.page(at: 0)?.annotations.filter {
$0.widgetFieldType == PDFAnnotationWidgetSubtype.button
}.forEach {
$0.shouldDisplay = false
}
}