iOS SDK
Pre Requisites
Zonka Feedback Mobile SDK requires an active Zonka Feedback account. In order to successfully run and test out the survey you would need to have an SDK token for the survey you want to implement. If you are already a user and have access to your SDK token you can directly jump to the Installation section. If not, read on and follow the following steps:
Create a new account on Zonka Feedback
Create a new survey with a choice of questions you would like to implement
Once your survey is created go to Distribute menu and click on the In-App tab
Enable the toggle to view the SDK token
Follow the below-mentioned steps to implement it in your app
Minimum Requirements
iOS SDK enables you to collect feedback from your iOS App on iPhone and iPad.
Recommended using Xcode 13 or above.
Targeting iOS 12.1 or above.
Swift 5
Installation
Installing using CocoaPods
Define pod in your Pod ruby file and run pod install.
Then run
Adding framework directly
If you do not want to install manually then you can directly add ZonkaFeedback.framework
to your Xcode project.
Once downloaded, follow these steps:
Drag ZonkaFeedback.framework into your project. Make sure "Copy items if needed" is selected and click Finish.
In the target settings for your app, set the ZonkaFeedback.framework to “Embed & Sign”. You'll find it in the “Frameworks, Libraries, and Embedded Content” section of the “General” tab.
Setup
Create an In-App SDK token for the required survey from Distribute menu and use that to initialize the survey using the SDK
Initialize ZFSurvey
Create an SDK token for the required survey from Distribute menu and use that to initialize the ZFSurvey object in your AppDelegate Class. Also, specify the region of your Zonka Feedback account.
For specifying the region use US
for the US region and EU
for EU region.
Swift
Initialization in SwiftUI projects, with no AppDelegate class
ZonkaFeedback iOS SDK can be used in SwiftUI projects. If your SwiftUI project doesn’t use the AppDelegate class, the initialization can be done in the constructor of the main application class:
Objective-C
Identifying Logged in Visitors
If you have an app where users are able to log in or signup then you can add the following code to automatically add the contacts in Zonka Feedback. You can pass at least one of the following parameters to identify the users.
Swift
Objective-C
Using ZonkaFeedback SDK
ZonkaFeedback SDK allows you to launch precisely targeted surveys inside your app. In the Zonka Feedback web Panel you can create a survey and use it on anywhere within your app.
Create an instance of ZFSurveyViewController in any ViewController you want to integrate the survey.
Optional Parameters
Using sendDeviceDetails
(Optional)
sendDeviceDetails
(Optional)You can set the value of sendDeviceDetails
to true if you want to submit details of your device along with the Zonka Feedback survey response. This would send the details of the device such as OS, OS version, IP address, and type of device. When you implement SDK it’s true by default.
Using sendCustomAttributes
(Optional)
sendCustomAttributes
(Optional)You can pass additional data about your users to provide more meaningful data along with the response. Some of the examples can be screen name, order Id, or transaction Id which can be associated with the response.
Attributes can be used to do the following:
Identify respondents (by default survey responses are anonymous)
Trigger surveys
Filter survey results
Swift
Objective-C
Reset Visitor Attributes
If you are using the above code to identify users, then it might be a good idea to clear visitor data on logout. Use the below code to clear the data.
Swift
Objective-C
Last updated