有人在iPhone上用ComScore做过分析吗?我不知道如何启动它。有人能帮我吗?- objective-c。
发布于 2012-10-17 13:28:24
你可以在这里找到答案,这是我在安卓系统上使用的here。
发布于 2014-03-21 06:49:12
ComScore的初始化方法是:
[CSComScore setAppContext];但我相信你也可以使用:
[CSComScore start];
// Or...
[CSComScore startWithLabels:@{@"label1":@"value1"}];和跟踪视图更改/外观:
[CSComScore view];
// Or..
[CSComScore viewWithLabels:@{@"testLabelA2":@"testValueA2", @"testLabelB2":@"testValueB2"}];请务必查看ComScore.h头文件,以获得其库使用的方法的完整列表。
https://stackoverflow.com/questions/7755477
复制相似问题