2

我在这里搜索了类似的帖子,但没有找到答案,所以如果我没有找到,请标记这个重复的帖子。所以我的问题是:我在 Android 和 iOS 上都使用 Google Analytics,两者都面临同样的问题。我希望 GA 仅在 WiFi 可用时发送跟踪,这可以通过检查网络状态轻松完成。但是现在我希望 GA 在没有 WiFi 可用时缓存事件/屏幕,并在 Wifi 可用时发送它。

我在文档中发现缓存只在没有互联网可用的情况下写入,所以我想问的是:有没有办法强制 GA 缓存跟踪即使在 3G 可用的情况下?在 SDK 中没有找到这样的方法。

请帮忙。

谢谢。

4

1 回答 1

4

要在 iOS 应用程序中实现这一点,您可能需要下载这个 Apple 示例或(我更喜欢)这个方便的 github 项目

如果你选择第二种方式,你只需要像这样在启动时创建和配置可达性类实例

// disable automatic sending of statistics 
[GAI sharedInstance].dispatchInterval = 0;

Reachability* reach = [Reachability reachabilityForLocalWiFi];
reach.reachableBlock = ^(Reachability *reach){
    [GAI sharedInstance].dispatchInterval = 20; 

    // you also may send cached statistics right on WiFi appear
    [[GAI sharedInstance] dispatch];
};

reach.unreachableBlock = ^(Reachability *reach) {
    // disable automatic upload, this will force GAI to cache all hits 
    // until you call dispatch or set dispatchInterval
    [GAI sharedInstance].dispatchInterval = 0;
};
于 2013-09-04T04:16:12.437 回答