2

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

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

名称:用户标识符范围:用户活动:真

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

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

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

我们正在使用谷歌分析 3.02。

有谁知道我们哪里出错了?

4

2 回答 2

3

你要发送追踪器吗?

这是来自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]];
于 2013-11-08T21:05:11.220 回答
0

首先,您需要创建所需的 Dictionary Builder,然后在该构建器上设置自定义维度,最后从构建器进行构建并调用跟踪器的发送方法发送构建


    //MARK:- CUSTOM EXCEPTION TRACKING
    func doTrackCustomExceptionWithGA(message:String, customDimensionValue:String, isFatal:Bool = false) {

        guard let tracker = GAI.sharedInstance()?.defaultTracker else { return }

        guard let exceptionBuilder = GAIDictionaryBuilder.createException(withDescription: message, withFatal: NSNumber(value: isFatal)) else { return }
        if !customDimensionValue.isEmpty {
            exceptionBuilder.set(customDimensionValue, forKey: GAIFields.customDimension(for: 15))
        }

        guard let build = exceptionBuilder.build() as? [AnyHashable : Any] else { return }
        tracker.send(build)

        // ADDING DUMMY EVENT TO TRACK PREVIOUS EVENT QUICKLY, AS GA EVENTS ARE TRACKED ON NEXT EVENT CALLS ONLY
        let event = GAIDictionaryBuilder.createScreenView()
        tracker.send(event?.build() as! [NSObject: Any])
    }

希望这对某人有帮助..

于 2019-05-22T05:52:10.993 回答