ios - Parse analytics not tracking custom events -


i using parse track custom events project. on first version had using:

[pfanalytics trackevent: @"some event string"];  // works 

but decided put track more events, specially in-app purchases, created few more dictionary so:

nsdictionary *dict = @{               @"item name" : itemname,               @"price" : pricestring };  [pfanalytics trackevent:@"user purchase" dimensions:dict]; 

but somehow after shipping second version event doesn't show on dashboard, @"some event string" event does. there i'm doing wrong?

i've checked keys , values dimensions dictionary appears ok, , i've tried "user purchase" event without dimensions, doesn't work either.

it seems these code simple in config inside parse. can't explain why first event kept working, can pfanalytics class have bug?

update: seems not familiar dashboard functionality , events being recorded. have go "custom breakdown" in order see custom events. can see events.

i think found solution: it's not obvious within dashboard. found similar question , answered there


Comments

Popular posts from this blog

google api - Incomplete response from Gmail API threads.list -

Installing Android SQLite Asset Helper -

Qt Creator - Searching files with Locator including folder -