如何使用Google Analytics for iPhone重置会话?

时间:2011-06-01 11:11:36

标签: iphone google-analytics session-cookies

我在使用自助服务终端的iPad应用中使用Google Analytics,我需要在应用中的某些位置手动重置Google Analytics会话,是否有人知道如何执行此操作?

iOS上的分析源代码似乎不可用,并且网页版Google Analytics使用的Cookie不会显示在iOS应用的共享Cookie存储中,因此很容易通过简单地删除相关的cookie在网上做到这一点,在iOS上这似乎不可能,因为那些cookie不可见,有没有办法解决这个问题?

1 个答案:

答案 0 :(得分:0)

您是否尝试过简单地停止并启动智能设备?

从标题:

// Start the tracker by specifying a Google Analytics account ID and a
// dispatch period (in seconds) to dispatch events to the server
// (or -1 to dispatch manually). An optional delegate may be
// supplied.
- (void)startTrackerWithAccountID:(NSString *)accountID
                   dispatchPeriod:(NSInteger)dispatchPeriod
                         delegate:(id<GANTrackerDelegate>)delegate;

// Stop the tracker.
- (void)stopTracker;
相关问题