iPhone上的ComScore Analytics

时间:2011-10-13 14:13:31

标签: ios objective-c iphone analytics comscore

有没有人在iPhone上使用ComScore进行分析?我无法理解如何启动它。请问有人帮我吗? - objective-c。

2 个答案:

答案 0 :(得分:3)

我可以在这个here pdf中找到答案,我将它用于Android。

答案 1 :(得分:1)

ComScore的init方法是:

    [CSComScore setAppContext];

但我相信你也可以使用:

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

跟踪视图更改/外观:

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

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