В своем приложении для iPhone я использую Omniture для отслеживания.
Код, который я пишу в AppDelegate:
OMAppMeasurement * s = [OMAppMeasurement getInstance];
/* Specify the Report Suite ID(s) to track here */
s.account = @"reportSuiteID";
s.currencyCode = @"USD";
/* Turn on and configure debugging here */
s.debugTracking = YES;
/* WARNING: Changing any of the below variables will cause drastic
changes
to how your visitor data is collected. Changes should only be made
when instructed to do so by your account manager.*/
s.pageName=@"firstViewController";
s.trackingServer = @"trackingserver";
[s track];
И моя консоль показывает только одну строку:
Время компиляции библиотеки измерений приложения = 25 января 2011 г. 11: 46: 14
Подскажите, что я делаю не так?
Мой код в нужном месте?
А на сайте где можно посмотреть отчеты?