Screen Tracking Data in Firebase Analytics

According to the Firebase documentation, I don’t need to add anything to record screenview data from my users. Here is a snippet directly from the documents:

setScreenName: screenClass:

Sets the current screen name that defines the current visual context in your application. This helps identify areas in your application where users spend their time and how they interact with your application.

Note that the report on the screen turns on automatically and records the class name of the current UIViewController for you, without requiring you can call this method. If you implement viewDidAppear in your UIViewController but do not call [super viewDidAppear:], this screen class will not be automatically tracked. The class name may optionally be overridden by calling this method in the viewDidAppear callback of your UIViewController and specifying the screenClassOverride parameter. If your application does not use a separate UIViewController for each screen, you must call this method and specify screenName each time a new screen is presented to the user.

The screen name and screen class remain valid as long as the UIViewController changes or a new call to setScreenName: screenClass :.

24 , Firebase. : ?

-, ?

+4
1

, , ( , ). Firebase Summit 2016 Firebase , , , Crash Report, , , (Summit )

+1

Source: https://habr.com/ru/post/1661626/


All Articles