我在我的 iOS 应用程序中集成了 Flurry。我添加了一些事件。
我将“EventName”作为“String value”传递,将“EventValue”作为“URL String”传递。
但是当我检查 Event_URL 的快速分析时,有时它会显示 com.flurry.OTHER“知道为什么它会显示 com.flurry.OTHER”
NSString *eventName = "EVENT NAME"; NSString *eventValue = "https://myname/myimage.gif";
NSMutableDictionary *articleParams = [[NSMutableDictionary alloc]init];
[articleParams setObject:eventName forKey:@"Event_Name"];
[articleParams setObject:eventValue forKey:@"Event_URL"];
[Flurry logEvent:@"Event_Detail" withParameters:articleParams];