0

一旦flurry session开始,我需要获取flurry session ID,使用以下代码启动flurry session

Flurry.startSession("FLURRY_API_KEY", with: FlurrySessionBuilder
                 .init()
                 .withCrashReporting(true)
                 .withLogLevel(FlurryLogLevelAll))

使用 Flurry 会话 ID

Flurry.getSessionID()

如果我们在会话开始后立即调用此方法,将会话 ID 值设为零。

在android中,当flurry会话开始时,以下块可用,如何在swift中执行相同的操作。

.withListener(new FlurryAgentListener() {

4

1 回答 1

1
    import UIKit
    import Flurry_iOS_SDK

    @UIApplicationMain
    class AppDelegate: UIResponder, UIApplicationDelegate, FlurryDelegate {

        var window: UIWindow?


        func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
            // Override point for customization after application launch.


            Flurry.setDelegate(self)

            let builder = FlurrySessionBuilder.init()
                .withAppVersion("1.0")
                .withLogLevel(FlurryLogLevelAll)
                .withCrashReporting(true)
                .withSessionContinueSeconds(10)

            // Replace YOUR_API_KEY with the api key in the downloaded package
            Flurry.startSession("2WZ22NRSX8W52VKZBX9G", with: builder)

            return true
        }

     /*!
         *  @brief Invoked when analytics session is created
         *  @since 6.3.0
         *
         *  This method informs the app that an analytics session is created.
         *
         *  @see Flurry#startSession for details on session.
         *
         *  @param info A dictionary of session information: sessionID, apiKey
         */

        func flurrySessionDidCreate(withInfo info: [AnyHashable : Any]!) {

         //your session handling code here

        }

这是一个屏幕截图,突出显示为 FlurryDelegate 添加的代码: 在此处输入图像描述

于 2017-08-09T19:07:40.960 回答