gpt4 book ai didi

iOS : Google Analytics User Timing report is not updated in my Google Analytics Account

转载 作者:技术小花猫 更新时间:2023-10-29 11:12:16 25 4
gpt4 key购买 nike

我正在尝试使用 Google Analytics 跟踪我的应用速度,但我在我的 Google Analytics 帐户中看不到应用速度下的任何内容。我跟踪了其他参数,如事件、崩溃和异常。对于那些参数,我能够看到在我的谷歌分析帐户中生成的报告。以下是我用来发送事件计时的代码。

 self.endDate=[NSDate date];
double timeDiff=[_startDate
timeIntervalSinceDate:_endDate];
NSLog(@"timeDiff----%f",timeDiff);
if([[[GAI sharedInstance]defaultTracker] sendTimingWithCategory:category
withValue:timeDiff
withName:@"LoadTime"
withLabel:category]) {
NSLog(@"Succesfully sent load time to GA");
}

以下是控制台中打印的消息。

GoogleAnalytics 2.0b4 -[GAIDispatcher dispatchComplete:withStartTime:withRetryNumber:withResponse:withData:withError:] (GAIDispatcher.m:415) DEBUG: Successfully dispatched hit /GAIHit/p479 (0 retries).

如果您有任何示例代码,请提供给我。请帮助我。提前致谢。

最佳答案

我发现间隔必须是整数。它期望毫秒,但 NSTimeInterval 是秒,因此它尝试将其作为“3.1234”发送,但如果将其转换为整毫秒,它将作为 3123 发送,您应该会看到结果。为了转换我使用了 (GA V3)

[tracker send:[[GAIDictionaryBuilder createTimingWithCategory:category interval:@((int)(interval * 1000)) name:name label:label] build]]

关于iOS : Google Analytics User Timing report is not updated in my Google Analytics Account,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14952061/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com