문제

I recently started to implement Google Analytics V2 beta in my app and i would like to know how can i track when it is launched. My code is:

    - (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;
}

I don't want to track it as an event. How can i do it ?

도움이 되었습니까?

해결책

Maybe you could try this:

[self.tracker trackView:@"App started"];
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top