Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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.

like image 791
Neelam Verma Avatar asked Oct 09 '22 18:10

Neelam Verma


2 Answers

One can find answer here in this here pdf i used it for android.

like image 178
Ravi K. Sharma Avatar answered Oct 13 '22 11:10

Ravi K. Sharma


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.

like image 21
Jalakoo Avatar answered Oct 13 '22 12:10

Jalakoo