2012-12-12 4 views
0

최근에 내 앱에서 Google 웹 로그 분석 V2 베타를 구현하기 시작했으며 출시 시점을 어떻게 추적 할 수 있는지 알고 싶습니다. 내 코드 :IOS Google Analytics V2 세션 추적

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 
{ 
    [GAI sharedInstance].debug = YES; 
    [GAI sharedInstance].dispatchInterval = 120; 
    [GAI sharedInstance].trackUncaughtExceptions = YES; 
    self.tracker = [[GAI sharedInstance] trackerWithTrackingId:@"ID"]; 

    self.tracker.sessionStart = YES; 

    return YES; 
} 

이벤트로 추적하고 싶지 않습니다. 내가 어떻게 해 ?

답변

0

어쩌면 당신이 시도 할 수 :

[self.tracker trackView:@"App started"]; 
관련 문제