gpt4 book ai didi

iphone - 如何在 iPhone 应用程序中进行Omniture 追踪

转载 作者:行者123 更新时间:2023-12-03 21:20:44 25 4
gpt4 key购买 nike

在我的 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];

我的控制台只显示一行:

应用测量库编译时间 = 2011 年 1 月 25 日 11:46:14

建议我做错了什么?

我的代码在正确的位置吗?

在网站上哪里可以看到报告?

最佳答案

对于我们所有的客户,我们都使用了不同的语法来实现。我们把OMAppMeasurement * s;在AppDelegate中以及applicationDidFinishLaunching函数中的所有配置代码。这是所有 Omniture 实现文档中经过认证的实现。

#import "BasicExampleAppDelegate.h"
@implementation BasicExampleAppDelegate

OMAppMeasurement * s;

@synthesize window = window_;

- (void)applicationDidFinishLaunching:(UIApplication *)application {

//Instantiate instance
s = [[OMAppMeasurement alloc] init];
//Setup application config variables
s.account = @"RSID";

s.trackingServer = @"TRACKSERVER";

s.pageName = @"Main Page";

[s track];

[window_ makeKeyAndVisible];
}

- (void)dealloc {
[s release];
[window_ release];
[super dealloc];
}

@end

关于iphone - 如何在 iPhone 应用程序中进行Omniture 追踪,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5116764/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com