使用 UITextField 中的信息填写 PDF 文档
Filling out a PDF document with information from UITextField
我有一个 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)
希望对您有所帮助。
我有一个 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)
希望对您有所帮助。