APP_KEY_SECRET.
use_frameworks!
is replaced with use_modular_headers!
to handle some compatibility issues.use_modular_headers!
on the code above with use_frameworks!
platform :ios, '11.0'
for minimum deployment target to obtain latest update of TapTalk.io SDKgit-lfs
(Git Large Files Storage) you will need to install GIT LFS to clone/install TapTalk.io SDK through Cocoapods.git-lfs
before pod install, otherwise the pod install / pod update will be error git-lfs
is installed, install the TapTalk.io through CocoaPods.UIApplicationDelegate
methods in appDelegate file.UIApplicationDelegate
methods in appDelegate file to make sure TapTalk.io Omnichannel runs smoothly in your application.application:didFinishLaunchingWithOptions:
applicationWillResignActive:
applicationDidEnterBackground:
applicationWillEnterForeground:
applicationDidBecomeActive:
applicationWillTerminate:
handleException:
NSSetUncaughtExceptionHandler(&handleExceptions);
in application:didFinishLaunchingWithOptions:
method to register uncaught exception handler and add delegate function handleExceptions
.application:didFinishLaunchingWithOptions:
method and implement handleExceptions
method in appDelegate class to make sure TapTalk.io able to handle exceptions.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.APP_KEY_SECRET
: (String) application key SecretinitializeGooglePlacesApiKey()
method.GOOGLE_PLACES_API_KEY
: (String) Google Places API keypresentTapTalkLiveViewWithCurrentNavigationController:animated
or pushTapTalkLiveViewWithCurrentNavigationController:animated
method from the TapTalkLive class. This will open an activity containing a chat room list for your user, and will open a Create Case Form activity on top if the user is new or do not have any existing case.NAVIGATION_CONTROLLER
: (UINavigationController) your current active navigation controller
ANIMATED
: (BOOL) boolean to state animation active or not