有没有人在iPhone上使用ComScore进行分析?我无法理解如何启动它。请问有人帮我吗? - objective-c。
答案 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头文件,以获取其库使用的完整方法列表。