适用于iOS的GA和自定义尺寸

我们在iOS应用中设置了Google Analytics,该应用正在发送供应商标识符以区分报告中的用户。 以下是我们所做的:

在Google Analytics中,我们设置了一个自定义维度,如下所示:

名称:用户标识范围:User Active:True

在应用程序中,我们在AppDelegate中添加以下内容:

[tracker set:[GAIFields customDimensionForIndex:1] value:uuidString]; // uuidString is the device identifier 

在日志logging窗口中,我可以看到cd1的值是正确的值,但是我们的自定义报告没有显示自定义维度的数据。

我们正在使用Google Analytics 3.02。

有没有人知道我们要去哪里?

你发送跟踪器?

这是iOS SDK自定义维度和指标的一个例子

 // May return nil if a tracker has not yet been initialized with a property ID. id tracker = [[GAI sharedInstance] defaultTracker]; // Set the custom dimension value on the tracker using its index. [tracker set:[GAIFields customDimensionForIndex:1] value:@"Premium user"] [tracker set:kGAIScreenName value:@"Home screen"]; // Send the custom dimension value with a screen view. // Note that the value only needs to be sent once, so it is set on the Map, // not the tracker. [tracker send:[[[GAIDictionaryBuilder createAppView] set:@"premium" forKey:[GAIFields customDimensionForIndex:1]] build]];