为什么iOS应用中的事件未显示在Google Analytics页面中?

时间:2013-03-05 13:32:02

标签: ios google-analytics

我使用didFinishLaunchingWithOptions:

中的代码初始化GA
[GAI sharedInstance].trackUncaughtExceptions = YES;
[GAI sharedInstance].dispatchInterval = 5;
[GAI sharedInstance].debug = YES;
[[GAI sharedInstance] trackerWithTrackingId:GA_TRACKING_ID];

之后,我试图发送事件:

[[[GAI sharedInstance] defaultTracker] trackEventWithCategory:@"Category" withAction:@"Action" withLabel:@"Label" withValue:@1];

但没有任何结果。

顺便说一句

[[[GAI sharedInstance] defaultTracker] trackView:@"TEST VIEW"];

效果很好,我在GA页面上看到了它。 我对事件做错了什么?

1 个答案:

答案 0 :(得分:0)

trackView&不推荐使用trackEventWithCategory

尝试sendEventWithCategory

编辑:您使用的是最新版本的SDK吗?