ComScore Analytics on iPhone
Had anybody done analytics with ComScore on iPhone? I am not able to understand how to start it. Can anyone help me in this please? - objective开发者_运维技巧-c.
One can find answer here in this here pdf i used it for android.
The init method for ComScore is:
[CSComScore setAppContext];
But I believe you can also use:
[CSComScore start];
// Or...
[CSComScore startWithLabels:@{@"label1":@"value1"}];
And to track view changes/appearances:
[CSComScore view];
// Or..
[CSComScore viewWithLabels:@{@"testLabelA2":@"testValueA2", @"testLabelB2":@"testValueB2"}];
Be sure to look at the ComScore.h header file for the full list of methods used by their library.
精彩评论