我已经通过以下方式在 Google Analytics iOS 中为我的应用实现了 3 个用户级自定义维度:
[tracker send:[[[GAIDictionaryBuilder createAppView] set:[DeviceType deviceType] forKey:[GAIFields customDimensionForIndex:1]] build]];
[tracker send:[[[GAIDictionaryBuilder createAppView] set:[[UIDevice currentDevice] systemVersion] forKey:[GAIFields customDimensionForIndex:2]] build]];
[tracker send:[[[GAIDictionaryBuilder createAppView] set:fullVersionUser forKey:[GAIFields customDimensionForIndex:3]] build]];
我已经在控制面板中正确设置了尺寸,并且所有 3 个列表都处于活动状态。我只是想知道,我如何简单地查看这些尺寸?我尝试生成自定义报告,但似乎没有显示任何内容。有没有办法让这些维度出现在常规报告中?