我是Parse的新手,我刚尝试添加基本事件,如下所示:
NSDictionary *dimensions = @{
// What type of news is this?
@"category": @"politics",
// Is it a weekday or the weekend?
@"dayType": @"weekday",
};
[PFAnalytics trackEvent:@"read" dimensions:dimensions];
Run Code Online (Sandbox Code Playgroud)
从仪表板我可以看到记录的API请求事件,但我似乎无法访问特定的事件或数据.是否需要24小时注册或我错误地使用仪表板?