2

我尝试使用 Google Analytics 跟踪我的应用程序,但没有看到它何时以“实时模式”打开。

我正在使用Google Analytics for Mobile Apps iOS SDK v3.

Delegate.m

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions{
    // Optional: automatically send uncaught exceptions to Google Analytics.
    [GAI sharedInstance].trackUncaughtExceptions = YES;

    // Optional: set Google Analytics dispatch interval to e.g. 20 seconds.
    [GAI sharedInstance].dispatchInterval = 20;

    // Optional: set Logger to VERBOSE for debug information.
    [[[GAI sharedInstance] logger] setLogLevel:kGAILogLevelVerbose];

    // Initialize tracker.
    [[GAI sharedInstance] trackerWithTrackingId:@"UA-MYTRACKID-HERE"];

    return YES;
}

也许,在IOS模拟器中是不可能的?

4

1 回答 1

3

Google Analytics 也可以在 iOS 模拟器中使用。只需给它一点时间以显示实时数据(通常为 5-10 秒)。模拟器的唯一问题是 Google Analytics 可能会将 iPad 模拟器报告为 iPhone,但这并不是什么大问题。

于 2013-11-12T16:14:36.723 回答