问题描述
单击alertView的确定按钮时,我添加了一个Flurry logevent.
I have added a Flurry logevent when the ok button of the alertView is clicked.
- (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登录页面中.我做错什么了吗?
I have logged the event like 2 hours ago. It is still not appearing in my Flurry Login Page. Did i do something wrong?
我知道分析需要花费一些时间,但事件名称应在45分钟左右后显示在登录页面中.我对吗?担心我做错了..
I know the analytics takes time to appear but the event name should appear in the login page after 45 minutes or so. Am i right? Worried I did something wrong..
推荐答案
来自Flurry的使用数据可能最多需要7个小时才能反映在开发人员门户上.第一次活动可能需要更长的时间.
Usage data from Flurry may take up to 7 hours to get reflected on the developer portal. First time Events may take slightly longer.
如果您使用的是模拟器,请确保在关闭应用程序之前先按主屏幕按钮.这是完成Flurry报告生命周期所必需的.
If you're using the simulator, please ensure that you press the home button before closing the app. This is required in order to complete the Flurry reporting lifecycle.
(全面披露:我在Flurry的支持团队工作)
(Full disclosure: I work in the Support team at Flurry)
这篇关于在alertView中添加Flurry的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!