iPhone 上的 ComScore 分析

发布于 2024-12-09 10:06:00 字数 65 浏览 3 评论 0原文

有人在 iPhone 上使用 ComScore 进行过分析吗?我无法理解如何开始它。有人可以帮我吗? - 目标-c。

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.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

蓝色星空 2024-12-16 10:06:00

人们可以在此此处 pdf 我将其用于Android。

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

独留℉清风醉 2024-12-16 10:06:00

ComScore 的 init 方法是:

    [CSComScore setAppContext];

但我相信您也可以使用:

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

并跟踪视图更改/外观:

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

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

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文