我開始使用適用於iOS本機應用程序的Goole Analytics v2.0beta3。 我用下面的代碼啓動一個會話:Google Analytics(分析)V2 iOS - 會話持續時間始終爲0.0
[GAI sharedInstance].trackUncaughtExceptions = YES;
[GAI sharedInstance].dispatchInterval = 20;
[GAI sharedInstance].debug = YES;
id<GAITracker> tracker = [[GAI sharedInstance] trackerWithTrackingId:@"UA-XXXX-X"];
[GAI sharedInstance].defaultTracker = tracker;
[tracker setAnonymize:YES];
BOOL res = [tracker trackEventWithCategory:@"cat" withAction:@"act" withLabel:@"label" withValue:[NSNumber numberWithInt:1]];
[[GAI sharedInstance] dispatch];
不過,我不知道該如何結束會話,會話持續時間我得到的始終是0.0
有沒有人遇到這個問題?
謝謝