我有一个100页的PDF文档,可以打开我的应用程序。在我的文档中,我添加了各种文本字段,以允许用户添加评论。我尝试了多种方法将文本保存在文本框中,以允许用户返回tp编辑/标记文档,但是我很不幸。如何在PDFAnotoation
文本框中将文本另存为带注释的字符串,以允许用户在编辑时从上次退出的地方开始提取文本?
这是我的原著:
var textFieldMultiline21 = PDFAnnotation()
let textFieldMultilineBounds21 = CGRect(x: 27, y: 58+2, width: 339, height: 508)
textFieldMultiline21 = PDFAnnotation(bounds: textFieldMultilineBounds21, forType: PDFAnnotationSubtype(rawValue: PDFAnnotationSubtype.widget.rawValue), withProperties: nil)
textFieldMultiline21.widgetFieldType = PDFAnnotationWidgetSubtype(rawValue: PDFAnnotationWidgetSubtype.text.rawValue)
textFieldMultiline21.backgroundColor = UIColor.clear
textFieldMultiline21.font = UIFont.systemFont(ofSize: 18)
textFieldMultiline21.isMultiline = true
page.addAnnotation(textFieldMultiline21)
这里我说尝试在文本框中保存文本:
document.page(at: 21)?.annotations[0].contents = "Sample text"
textFieldMultiline21.caption = "sampletext"
答案 0 :(得分:0)
一个简单的答案隐藏在视线之外
阅读文字
pdfAnnotationTextField.value(forAnnotationKey: .widgetValue)
返回具有属性的字符串值
设置文本
pdfAnnotationTextField.setValue("Enter Text", forAnnotationKey: .widgetValue)