现在,我在我的 Ipad 应用程序中使用 Google Analytic 来跟踪浏览量和事件,我在下面为我的所有 viewController 和按钮单击事件实现了代码,但是当我的视图消失时,我的应用程序停止/崩溃。我已将 stopTracker 代码[[GANTracker sharedTracker] stopTracker];
放入 viewWillDisappear 方法中。
[[GANTracker sharedTracker] startTrackerWithAccountID:@"UA-12345678-1"
dispatchPeriod:kGANDispatchPeriodSec
delegate:nil];
NSError *error;
if (![[GANTracker sharedTracker] setCustomVariableAtIndex:1
name:@"iPad3"
value:@"iv1"
withError:&error]) {
// Handle error here
}
if (![[GANTracker sharedTracker] trackEvent:@"my_category"
action:@"my_action"
label:@"my_label"
value:-1
withError:&error]) {
// Handle error here
}
if (![[GANTracker sharedTracker] trackPageview:@"/app_entry_point_prashant"
withError:&error]) {
// Handle error here
}
[[GANTracker sharedTracker] stopTracker];