我正在使用Google Analytics for Mobile Apps iOS SDK v3。屏幕跟蹤工作正常,但我不能讓事件跟蹤工作。 Xcode中顯示錯誤:Google Analytics for Mobile Apps iOS SDK v3事件跟蹤
No known class method for selector 'createEventWithCategory:withAction:withLabel:withValue:'
我的代碼是:
- (IBAction)callButton:(id)sender {
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"tel:12345"]];
id<GAITracker> tracker = [[GAI sharedInstance] defaultTracker];
[tracker send:[[GAIDictionaryBuilder createEventWithCategory:@"ui_action"
withAction:@"button_press"
withLabel:@"play_button"
withValue:nil] build]];
}
有史以來最嚴重的問題。 – tasomaniac