【发布时间】:2013-01-23 06:36:05
【问题描述】:
当点击 alertView 的 ok 按钮时,我添加了 Flurry logevent。
- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex;
{
if (buttonIndex == 1)
{
NSString *start = @"Start";
NSString* myLogEvent = [start stringByAppendingString:title.text];
NSLog(@"%@",myLogEvent);
[Flurry logEvent:myLogEvent];
}
}
我已经记录了 2 小时前的事件。它仍然没有出现在我的 Flurry 登录页面中。我是不是做错了什么?
我知道分析需要一些时间才能显示,但事件名称应在 45 分钟左右后出现在登录页面中。我对吗?担心我做错了什么..
【问题讨论】: