4

对于PDFDocument包含带有 awidgetFieldType的注释的 a PDFAnnotationWidgetSubtype.textPDFAnnotationWidgetSubtype.button是否可以禁用这些注释的用户交互(即单击复选框不会导致它切换)?

4

1 回答 1

2

你可以试试这个(第一页):

        pdfView.document?.page(at: 0)?.annotations.filter {
            $0.widgetFieldType == PDFAnnotationWidgetSubtype.button
            }.forEach {
                $0.shouldDisplay = false
            }
        }
于 2018-08-09T07:25:51.580 回答