0

我知道 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 。任何帮助,将不胜感激。提前致谢

4

1 回答 1

0

Flurry 默认发送FlurryLogLevelCriticalOnly

//默认,只输出关键日志事件`

尝试声明日志级别,

Flurry.setLogLevel(FlurryLogLevelAll)

希望这有帮助

于 2016-08-02T07:19:30.513 回答