使用来自 UITextField 的信息填写 PDF 文档



我有一个PDF文档存储在我的应用程序的主捆绑包中,还有一个ViewController,其中包含用于用户输入的文本字段。 我还有一个按钮可以将填写的PDF通过电子邮件发送给用户。 我不需要将 PDF 保存到设备

我想使用PDFKit来做到这一点,但我无法弄清楚如何实现这一点。

我尝试了以下代码:

if let path = Bundle.main.path(forResource: "User", ofType: "pdf") {
    let url = URL(fileURLWithPath: path)
    if let doc = PDFDocument(url: url) {
        for index in 0..<doc!.pageCount{
            if let page = doc?.page(at: index){
                let annotations = page.annotations
                for annotation in annotations{
                    print("Annotation Name :: (annotation.fieldName ?? "")")
                    if annotation.fieldName == "firstname"{
                        annotation.setValue(firstnameField.text, forAnnotationKey: .widgetValue)
                        page.removeAnnotation(annotation)
                        page.addAnnotation(annotation)
                    }
                }
            }
        }
        let mailComposer = MFMailComposeViewController()
        mailComposer.mailComposeDelegate = self
        mailComposer.setToRecipients([emailField.text])
        mailComposer.setSubject("User Information")
        mailComposer.setMessageBody("User Information for (firstnameField.text).", isHTML: true)
        mailComposer.addAttachmentData(doc.dataRepresentation()!, mimeType: "application/pdf", fileName: "User")
        self.present(mailComposer, animated: true, completion: nil)
    }
}

任何这方面的帮助将不胜感激。

乔希

我认为您可以替换行:

annotation.setValue(firstnameField.text, forAnnotationKey: .widgetValue)

annotation.contents = firstnameField.text

如果这不起作用(也许这不是文本或自由文本注释(,您还可以创建自由文本注释并将其放在那里:

let textObj = PDFAnnotation(bounds: annotation.bounds, forType: .freeText, withProperties: nil)
textObj.contents = firstnameField.text
textObj.color = UIColor.clear
page.addAnnotation(textObj)

希望这有帮助。

最新更新