でユーザー タイミングデータを送信しsendTimingWithCategory:withTimeInterval:withName:withLabel
ていますが、Google アナリティクス レポート ツールでこれらのデータが見つからないようです。
私のアプリでは、さまざまな種類のユーザー タイミングをキャプチャしようとしています。コード スニペットを次に示します。
// duration1 & duration2 are instances of NSTimeInterval
id<GAITracker> tracker = [[GAI sharedInstance] defaultTracker];
[tracker sendTimingWithCategory:@"DurationOnApp" withValue:duration1 withName:nil withLabel:nil];
[tracker sendTimingWithCategory:@"DurationOnSectionA" withValue:duration2 withName:nil withLabel:nil];
それは私を驚かせました: それは、値をname
`nil のままにしておくのではなく、値を与えるべきだからですか?