在我的 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];
我的控制台只显示一行:
App Measurement Library 编译时间 = Jan 25 2011 11:46:14
建议我做错了什么?
我的代码在正确的位置吗?
在哪里可以看到报告?