Super Simple Google Form Integration using Swift.
String googleFormNameField = "entry.988940513"
String googleFormCompanyField = "entry.616869385"
//..Next entries or vairiables..//
let gForm = GoogleForm()
/* Clear the Contents before next entry */
gForm.clear()
/* Google Form Link */
gForm.setGoogleFormLink(googleFormLink)
/* Fields */
gForm.setNextFields(googleFormNameField, value: ClientList.text!)
gForm.setNextFields(googleFormCompanyField, value: CompanyList.text!)
gForm.setNextFields(googleFormCommentsField, value: Comments.text!)
/* Sends data to google form */
gForm.sendToGoogleForm()
- Now change viewform to formResponse and that will be your googleFormLink
-
Now the entries will be serially as the fields defined in your form are
- entry.988940513 will be googleFormNameField
- entry.616869385 will be googleFormCompanyField
-
You are done
It can only post data , no backway traffic



