In my swift application there is PDF form field which with all the fields name defined, I want to fill these fields programmatically, however watching the WWDC presentation, PDFKit first draw a frame around the field, meaning creating form field first than setting the vale as
textField.widgetStringVale = “WWDC 2017”
My questions are
1) is it possible to fill the PDF form with fields already created in adobe acrobat in swift programmatically instead of creating first using PDFKit
2) if not for 1) how to determine the absolute frame size for fields as there are many field so I don’t want to trial and error
