2016-08-02 21 views
0

我知道Flurry報告存在延遲,但是,Flurry未能顯示某些事件(即,didselectrowatindexpath) 任何想法?我沒有關於代碼的,我註冊我的IDFlurry Analaytics無法在點擊上顯示事件

 Flurry.setCrashReportingEnabled(true) 
     Flurry.startSession(@"SESSION_START") 
     Flurry.logEvent("session_Name", withParameters: nil) 
     Flurry.setBackgroundSessionEnabled(false) 
     Flurry.setDebugLogEnabled(true) 
     Flurry.setSessionReportsOnCloseEnabled(true) 
     Flurry.setSessionReportsOnPauseEnabled(true) 
     Flurry.setEventLoggingEnabled(true) 

日誌從Flurry的分析: 16年8月2日11時51分28秒IST 1.1(iPhone)蘋果iPod Touch的6G

1) getFeedsSuccess 
2) reloadNavBar 
3) updateLogoImage 
4) getLoadUpdatedDataInAdvance 
5) numberOfSectionsInCollectionView 
6) numberOfItemsInSection 
7) sizeForItemAtIndexPath 
8) cellForItemAtIndexPath 

注意:未能顯示didselectrowatindexpath。任何幫助,將不勝感激。在此先感謝

+0

注:我解決了這個問題。請試試這個Flurry.setShouldGroupAccessibilityChildren(true) –

回答

0

亂舞默認發送FlurryLogLevelCriticalOnly

//默認,只輸出臨界日誌events`

試圖聲明日誌級別,

Flurry.setLogLevel(FlurryLogLevelAll) 

希望這有助於

+0

感謝iSashok.But仍然無法顯示didselectedrowatindexpath –