我正在尝试使用谷歌分析来跟踪我的应用程序速度,但我在我的谷歌分析帐户中看不到应用程序速度下的任何内容。我已经跟踪了其他参数,例如事件、崩溃和异常。对于这些参数,我能够看到在我的谷歌分析帐户中生成的报告。以下是我用来发送事件计时的代码。
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) 调试:成功发送命中 /GAIHit/p479(0 次重试)。
如果你有任何示例代码,请提供给我。请帮助我。提前致谢。