My quick application has a PDF form field in which all the field names are defined, I want to fill in these fields programmatically, however, following the WWDC presentation, PDFKit first draw a frame around the field, which means creating a form field before setting the valley as
textField.widgetStringVale = 'WWDC 2017'
My questions
1) is it possible to fill out a PDF form with fields already created in Adobe Acrobat in Swift programmatically, and not create it first using PDFKit
2) if not for 1) how to determine the absolute frame size for fields, since there are many fields, so I do not want trial and error

source
share