當點擊alertView的確定按鈕時,我添加了亂七八糟的logevent。在alertView中添加亂舞查看
- (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 Login Page中。我做錯什麼了嗎?
我知道分析過程需要時間才能顯示,但事件名稱應在45分鐘左右後出現在登錄頁面中。我對嗎?擔心我做錯了什麼。
只是QN:我正在運行的模擬器應用程序,它仍然得到記錄? – lakesh
是的,模擬器上生成的數據也被記錄下來。 –
我試了一整天,試圖記錄數據,但似乎並沒有這樣做。 – lakesh