Warning: file_get_contents(/data/phpspider/zhask/data//catemap/5/objective-c/24.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
FirebaseAnalytics for iOS_Ios_Objective C_Firebase_Firebase Analytics - Fatal编程技术网

FirebaseAnalytics for iOS

FirebaseAnalytics for iOS,ios,objective-c,firebase,firebase-analytics,Ios,Objective C,Firebase,Firebase Analytics,我使用了以下firebase代码: int month = (int)[components month]; //gives you month int day = (int)[components day]; //gives you day int year = (int)[components year]; NSString * obj = @"Date : "; NSString * key = [NSStr

我使用了以下firebase代码:

        int month = (int)[components month]; //gives you month
        int day = (int)[components day]; //gives you day
        int year = (int)[components year];

        NSString * obj = @"Date : ";
        NSString * key = [NSString stringWithFormat:@"%d/%d/%d",day,month,year];
       [dictionary setObject:obj forKey:key];


       [FIRAnalytics logEventWithName:@"Game Launch :" parameters:dictionary];
       [FIRAnalytics setAnalyticsCollectionEnabled:true];

在firebase dashboard中,无“我在何处看到”消息游戏启动此日志来自何处?

在firebase StreamView或DebugView中实时查看事件

  • 启用iOS()的调试日志记录,以查看事件何时上载到调试控制台
  • 转到Firebase控制台
  • 选择你的应用程序
  • 在分析选项卡中,选择StreamView或DebugView以实时查看事件
  • 查看Firebase仪表板中的事件

    在Firebase中,仪表板不会实时显示事件

    您可以在Firebase控制台仪表板中查看有关事件的聚合统计信息这些仪表盘在一天中定期更新。如前一节所述,使用logcat输出进行即时测试


    要在Firebase StreamView或DebugView中实时查看事件,请参见

  • 启用iOS()的调试日志记录,以查看事件何时上载到调试控制台
  • 转到Firebase控制台
  • 选择你的应用程序
  • 在分析选项卡中,选择StreamView或DebugView以实时查看事件
  • 查看Firebase仪表板中的事件

    在Firebase中,仪表板不会实时显示事件

    您可以在Firebase控制台仪表板中查看有关事件的聚合统计信息这些仪表盘在一天中定期更新。如前一节所述,使用logcat输出进行即时测试


    请参见

    以上代码仅在Xcode中记录?FIRAnalytics logEventWithName:@“游戏发布:”,在此游戏发布中:仅在Xcode中出现?在firebasedashboard中的哪个位置没有显示?那么上面的代码只在Xcode中记录?FIRAnalytics logEventWithName:@“游戏发布:”,在此游戏发布中:仅在Xcode中出现?没有显示在firebasedashboard中的哪个位置?