iOSの最低バージョンは7.1
です。
No Content Here
1) lib mobileCX_Library.a
2) mobileCX_Resource.bundle
3) mobileCX_Library.h
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.
Go to AppDelegate.h file and copy following lines:
#import
Copy the below mentioned line in AppDelegate didFinishLaunchingWithOptions method:
self.iMobileCX_Library = [[MobileCX_Library alloc]initwithAPIKey:@"87f682bb-bab3-4099-b7e9-da8779bba6b0" withWindow:self.iWindow];
Don’t forget to include shared method in AppDelegate.m file
(AppDelegate *)sharedAppDelegate { return (AppDelegate *)[UIApplication sharedApplication].delegate; }
To integrate touchpoint for particular event, copy the below mentioned lines:
[[SurveyAnalyticsAppDelegate sharedAppDelegate].iMobileCX_Library engageTouchPoint:@(115) WithViewControllerName:@"ListView"];