我知道Flurry报告存在延迟,但是,flurry未能显示某些事件(即,didselectrowatindexpath) 任何的想法?我做了代码,我用我的ID注册
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 Analytics的日志 08/02/16 11:51:28 IST 1.1(iPhone)Apple iPod Touch 6G
1) getFeedsSuccess
2) reloadNavBar
3) updateLogoImage
4) getLoadUpdatedDataInAdvance
5) numberOfSectionsInCollectionView
6) numberOfItemsInSection
7) sizeForItemAtIndexPath
8) cellForItemAtIndexPath
注意:未能显示didselectrowatindexpath。任何帮助,将不胜感激。提前致谢
答案 0 :(得分:0)
Flurry默认发送FlurryLogLevelCriticalOnly
//默认,仅输出关键日志事件
尝试声明日志级别,
Flurry.setLogLevel(FlurryLogLevelAll)
希望这个帮助