iOS SDK

最低限必要なiOSのバージョンは?

iOSの最低バージョンは7.1です。


プロジェクトへのMobileCX_Libの組み込み

arrow_rightMobileCX_Libを組み込み手順

                        No Content Here
                    

「MobileCX」をプロジェクトのサブプロジェクトとして組み込みます。

arrow_right以下の3つのファイルをプロジェクトに含める必要があります。

                          1) lib mobileCX_Library.a
                          2) mobileCX_Resource.bundle
                          3) mobileCX_Library.h
                    
arrow_right手順

                    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.
                

AppDelegateの手順

arrow_rightステップ1

                          Go to AppDelegate.h file and copy following lines:
                          
                            #import
                    
arrow_rightステップ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_rightステップ3

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

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