Get Started
Before you get started: Make sure you have created a channel in OneTalk dashboard and obtain the APP_KEY_SECRET.
Configure and Initialize TapTalk.io Omnichannel iOS SDK
Step 1: Install TapTalk.io Omnichannel iOS SDK
You can install the TapTalk.io Omnichannel iOS SDK using CocoaPods like the following. If you are new to CocoaPods, you can see more information in Cocoapods guides. To create a Podfile, open a terminal window, navigate to your project directory, and then create a Podfile by running the following command in the terminal:
Then Podfile will be created in your project directory. Open the Podfile and add the following lines to the Podfile.
Note: For SDK version 1.1.0 and above, removeuse_frameworks!
and add additional pod implementation with modular headers to handle some compatibility issues.
For versions below 1.1.0, please remove pod 'AFNetworking
' and pod 'JSONModel'
implementation on the code above with use_frameworks!
Note: Please make sure you implement ios version 11.0platform :ios, '11.0'
for minimum deployment target to obtain latest update of TapTalk.io SDK
Since TapTalk.io use uses git-lfs
(Git Large Files Storage) you will need to install GIT LFS to clone/install TapTalk.io SDK through Cocoapods.
Note: Make sure to install git-lfs
before pod install, otherwise the pod install / pod update will be error
Easiest way to install git-lfs is using brew:
Next, after the git-lfs
is installed, install the TapTalk.io through CocoaPods.
Step 2: Grant permission in your application project
To make sure TapTalk.io Omnichannel iOS have all permission to access user's media, file, location, and contact, the application needs to ask for permissions. Go to your info.plist, and add the following key-value pairs.
Note: You can change Information Property Value based on your own preferences. These values will appear when the application requests permission from the user.
Step 3: Enable background modes
Background modes is required to handle background process in TapTalk.io. It is used to run some processes in the background before the app is killed. For more information about the processes, check out the background process section.
To enable background modes, go to Target -> Capabilities, then turn Background Modes toggle to ON, next select Background fetch and Remote notifications
After you turn on the Background Modes, Required background modes key will be added automatically in your Info.plist as shown below.
Step 4: Initialize TapTalk.io Omnichannel Application Delegate
To allow the iOS SDK to respond to the connection and state changes in your iOS client app, you have to implement all of our application delegate methods in your UIApplicationDelegate
methods in appDelegate file.
After you initialize the TapTalk.io Omnichannel, you have to connect and implement these methods in your UIApplicationDelegate
methods in appDelegate file to make sure TapTalk.io Omnichannel runs smoothly in your application.
You have to add below code NSSetUncaughtExceptionHandler(&handleExceptions);
in application:didFinishLaunchingWithOptions:
method to register uncaught exception handler and add delegate function handleExceptions
.
Note: Don't forget to register for exception handler inside application:didFinishLaunchingWithOptions:
method and implement handleExceptions
method in appDelegate class to make sure TapTalk.io able to handle exceptions.
Step 5: Initialize TapTalk.io Omnichannel iOS in your application class
In order to use TapTalk.io Omnichannel, you must first initialize an instance by passing the APP_KEY_SECRET
and API_BASE_URL
assigned to your application to the initWithSecretKey:
method as a parameter. Generally, initialization is implemented in the appDelegate application:didFinishLaunchingWithOptions:
method.
Parameters
APP_KEY_SECRET
: (String) application key Secret
To allow the Omnichannel iOS SDK to respond to the connection and state changes in your iOS client app, you have to implement all of our application delegate methods in your UIApplicationDelegate methods in appDelegate file. You can follow the instructions in Implement Application Delegate page.
Initialize Google Places API Key (Optional)
To enable location search result preview while sending location message, a Google Places API Key is required. To obtain the API key for your application, you can check the documentation provided by Google. To initialize, insert your obtained key using the initializeGooglePlacesApiKey()
method.
Parameters
GOOGLE_PLACES_API_KEY
: (String) Google Places API key
Open TapTalk.io Omnichannel View
To open TapTalk Omnichannel's view UI for your application, you can use the presentTapTalkLiveViewWithCurrentNavigationController:animated
or pushTapTalkLiveViewWithCurrentNavigationController:animated
method from the TapTalkLive class. This will open a homepage view controller containing a list of available channels, the user's latest case, and QnA path.
Parameters
NAVIGATION_CONTROLLER
: (UINavigationController) your current active navigation controller
ANIMATED
: (BOOL) boolean to state animation active or not
Last updated