我已將Google Analytics(分析)結合到我的iphn應用程序中。當我檢查我的報告時,訪問的數據即將到來,但是PageViews和Pages/Visit的數據不會到來。 在應用程序didFinishLaunchingWithOptions方法中我的appDelegate文件我已經粘貼方法 -在Google Analytics(分析)報告中,訪問即將到來,但PageViews沒有數據即將到來
NSError *error;
if (![[GANTracker sharedTracker] trackPageview:@"BuildsViewController.xib" withError:&error])
{
// Handle error here
}
即使事件追蹤此碼作爲良好
[[GANTracker sharedTracker] startTrackerWithAccountID:@"UA-20206851-1"
dispatchPeriod:10
delegate:nil];
我使用這個代碼在我viewDidLoad中網頁瀏覽跟蹤無數據即將到來。我使用這個代碼,但─
NSError *error;
if (![[GANTracker sharedTracker] trackEvent:@"ButtonClicked"
action:@"production1"
label:@"Environment1"
value:-1
withError:&error])
{
// Handle error here
}
這裏「trackEvent」是方法的名字,我已經使用在「行動」和「標籤」的字符串。 請說明爲什麼PageViews不會到來
這意味着您的Google Analytics實施已連接(因爲事件正在進行,並說明您爲什麼看到訪問),但trackPageview調用一定有問題。我不知道Objective-C或iPhone編程,所以我不能幫你。 – Yahel 2011-04-29 16:46:47