IDGraph iOS Tracking Code

出自TAMedia
於 2017年11月13日 (一) 08:39 由 imported>Wikiuser 所做的修訂 (新頁面: 在AppDelegate的didFinishLaunchingWithOptions function中,帶入Service id初始化TAMIdGraphManager即可完成追蹤碼的建置。<br/> 其中Service id就是TAMedia提供給您的...)
(差異) ←上個修訂 | 最新修訂 (差異) | 下個修訂→ (差異)
跳至導覽 跳至搜尋

在AppDelegate的didFinishLaunchingWithOptions function中,帶入Service id初始化TAMIdGraphManager即可完成追蹤碼的建置。
其中Service id就是TAMedia提供給您的服務id。
請參考以下範例

Objective-c

在AppDelegate.m內加入#import <TAMIdGraph/TAMIdGraph.h>

   #import <TAMIdGraph/TAMIdGraph.h>
   @interface AppDelegate ()
   @end
    
   @implementation AppDelegate
    
   - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
       [TAMIdGraphManager initTAMIdGraphManagerWithServiceId:@"Your service id"];
       return YES;
   }

Swift

在YourProjectName-Bridging-Header.h內加入

   #import <TAMIdGraph/TAMIdGraph.h>

在AppDelegate.swift內實作

   import UIKit
   import TAMIdGraph
    
   @UIApplicationMain
    
   class AppDelegate: UIResponder, UIApplicationDelegate {
       var window: UIWindow?
       func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
           TAMIdGraphManager.initTAMIdGraphManager(withServiceId:"Your Service Id")      
           return true
       }