2015-04-30 199 views
2

我跟蹤解析1.7.2自定義事件在斯威夫特與:解析Analytics(分析)自定義事件不會出現

let dimensions = ["category" : "politics"]  
    PFAnalytics.trackEventInBackground("Read", dimensions: dimensions, block: { (succeeded: Bool, error: NSError?) -> Void in 
    }) 

,我也試着

let dimensions = ["category" : "politics"]  
    PFAnalytics.trackEventInBackground("Read", dimensions: dimensions, block: nil) 

但我的自定義事件做不會顯示在分析>事件>分析請求>自定義細分中。我已經這樣做了:Parse analytics custom event not registering和這個:Parse analytics not tracking custom events,我也讀過Parse文檔並等了幾天,看看數據是否出現。

解析在Analytics(分析)> Explorer(資源管理器)> Custom Events(資源管理器)中收到數據,但如何在Events選項卡中看到我的自定義事件?

UPDATE

Finally found a solution

+0

**解答**我找到了答案! [解析分析不跟蹤自定義事件](http://stackoverflow.com/questions/24448518/parse-analyitics-not-tracking-custom-events) – Lucas

+0

Parse.com和PHPMyAdmin有什麼區別? – sdd

回答

0

要查看儀表板中的自定義事件,您必須選擇節「自定義細分」中的「事件」,如下面的圖片:

enter image description here

自定義細分面板之後顯示出來在這裏你可以選擇你的自定義事件,並打開您感興趣的尺寸,如下圖所示:

enter image description here

當您選擇自定義事件和轉根據您感興趣的維度顯示您的自定義事件的分析,並且您可以選擇保存故障以供將來使用。

+0

感謝您的回覆,但我在原始問題中提到我已嘗試過Google Analytics(分析)> Events> Analytics Requests> Custom Breakdown,但我的自定義事件仍未顯示。它顯示我的唯一過濾器是「平臺」。 – Lucas

相關問題