PDFAnnotationWidgetSubtype

PDFAnnotationWidgetSubtype

对于包含注释的PDFDocumentwidgetFieldTypePDFAnnotationWidgetSubtype.textPDFAnnotationWidgetSubtype.button的ojit_code,是否可以禁用这些注释的用户交互(即,单击复选框不会导致其切换)?

最佳答案

您可以尝试以下操作(针对第一页):

        pdfView.document?.page(at: 0)?.annotations.filter {
            $0.widgetFieldType == PDFAnnotationWidgetSubtype.button
            }.forEach {
                $0.shouldDisplay = false
            }
        }

10-07 18:40