1

iPad アプリケーションで Omniture を使用してデータをキャプチャしています。このページからダウンロードできる ADMS ライブラリを使用しています。

https://developer.omniture.com/en_US/gallery/app-measurement-for-ios

ライブラリ/ダウンロードには、データのキャプチャに使用できる TrackingHelper クラスが含まれています。AppDelegate 内で、次のメソッドを呼び出します。

 // enable omniture tracking
    [TrackingHelper configureAppMeasurement];

configureAppMeasurement メソッドは、ライフ サイクル メトリックを取得することを想定していますが、何もしません。それは私をユニークな訪問者として捉えるだけで、それだけです。何か案は?

4

1 に答える 1

1

You need to enable the AutoTracking of lifecycle metrics in TrackingHelper.m

In TrackingHelper.m there should be the 4 auto tracking options already included. Just uncomment the one you want to use. If they are not there, then include one of these options:

To enable only LifeCycle auto tracking (this should be the default option), use:

[measurement setAutoTrackingOptions:ADMS_AutoTrackOptionsLifecycle];

To enable LifeCycle and navigation tracking, use:

[measurement setAutoTrackingOptions:ADMS_AutoTrackOptionsLifecycle | ADMS_AutoTrackOptionsNavigation];

To enable only Navigation auto tracking, use:

[measurement setAutoTrackingOptions:ADMS_AutoTrackOptionsNavigation];

To fully disable all auto tracking, use:

[measurement setAutoTrackingOptions:ADMS_AutoTrackOptionsNone];
于 2013-04-17T16:28:03.103 に答える