5

有人在 iPhone 上使用 ComScore 进行过分析吗?我无法理解如何启动它。有人可以帮我吗?- 目标-c。

4

2 回答 2

3

可以在这里找到答案pdf 我将它用于 android。

于 2012-10-17T05:28:23.547 回答
1

ComScore 的初始化方法是:

    [CSComScore setAppContext];

但我相信你也可以使用:

    [CSComScore start];
    // Or...
    [CSComScore startWithLabels:@{@"label1":@"value1"}];

并跟踪视图更改/外观:

    [CSComScore view];
    // Or..
    [CSComScore viewWithLabels:@{@"testLabelA2":@"testValueA2", @"testLabelB2":@"testValueB2"}];

请务必查看 ComScore.h 头文件以获取其库使用的方法的完整列表。

于 2014-03-20T22:49:11.943 回答