我正在尝试使用 Google 分析来跟踪我的应用程序速度,但我在网站上的应用程序速度下看不到任何内容。但我可以看到其他参数,如事件、崩溃和异常。以下是我用来发送事件计时的代码。
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 次重试)。 请帮我。