iOS SDK

What is the minimum required iOS version?

The minimum iOS version required is 7.1


Including MobileCX_Lib into your project

arrow_rightSteps to include MobileCX_Lib

                        No Content Here
                    

Including "MobileCX" as a subproject in your project

arrow_rightUser need to include below three files in his project

                          1) lib mobileCX_Library.a
                          2) mobileCX_Resource.bundle
                          3) mobileCX_Library.h
                    
arrow_rightSteps

                    1) Add mobileCX_Library.a & mobileCX_Resource.bundle file to “target dependencies” section in target build phase setting.
                    
                    2) Add libmobileCX_Library.a file to “link binary with libraries” section in target build phase setting.
                    
                    3) Add mobileCX_Resource.bundle file to “copy bundle resource” section in target build phase setting.
                

Steps for AppDelegate

arrow_rightStep 1

                          Go to AppDelegate.h file and copy following lines:
                          
                            #import
                    
arrow_rightStep 2

                          Copy the below mentioned line in AppDelegate didFinishLaunchingWithOptions method:
                          
                            self.iMobileCX_Library = [[MobileCX_Library alloc]initwithAPIKey:@"87f682bb-bab3-4099-b7e9-da8779bba6b0" withWindow:self.iWindow];
                    
arrow_rightStep 3

                          Don’t forget to include shared method in AppDelegate.m file
                          
                           (AppDelegate *)sharedAppDelegate { return (AppDelegate *)[UIApplication sharedApplication].delegate; }
                    
arrow_rightStep 4

                          To integrate touchpoint for particular event, copy the below mentioned lines:
                          
                           [[SurveyAnalyticsAppDelegate sharedAppDelegate].iMobileCX_Library engageTouchPoint:@(115) WithViewControllerName:@"ListView"];