Как добавить текстовое поле в PDFView, используя виджет PDFAnnotationSubtype?
После реализации этого кода текстовое поле отображается, но не может быть изменено.
private func textTapped()
{
if let currentPage = self.pdfView.currentPage
{
let widget = PDFAnnotation.init(bounds: CGRect.init(origin: self.pdfView.center, size: CGSize.init(width: 100, height: 100)), forType: PDFAnnotationSubtype(rawValue: PDFAnnotationSubtype.widget.rawValue), withProperties: nil)
widget.widgetFieldType = PDFAnnotationWidgetSubtype(rawValue: PDFAnnotationWidgetSubtype.text.rawValue)
widget.backgroundColor = UIColor.purple
widget.widgetStringValue = "Enter the text"
currentPage.addAnnotation(widget)
}
}