我正在执行安装程序https://www.raywenderlich.com/18579842-firebase-analytics-getting-started
我正在使用标志-FIRAnalyticsDebugEnabled
我在Firebase Analytics调试视图中查看实时结果
我还检查了XCode的控制台输出。
但是,我注意到,如果我以以下方式编写代码
未收到任何Firebase分析事件
import Firebase
@main
class AppDelegate: UIResponder, UIApplicationDelegate {
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
FirebaseApp.configure()
return true
}
但是,如果我以以下方式编写代码
接收Firebase分析First_OPEN事件
import Firebase
@main
class AppDelegate: UIResponder, UIApplicationDelegate {
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
FirebaseApp.configure()
let title = "xxx"
Analytics.logEvent(AnalyticsEventSelectContent, parameters: [
AnalyticsParameterItemID: "id-(title)",
AnalyticsParameterItemName: title,
AnalyticsParameterContentType: "cont",
])
return true
}
我需要显式地记录事件以接收first_open
。
我想知道为什么会这样?有没有办法,我仍然可以自动接收first_open
事件,而不必记录虚拟事件?
1条答案
按热度按时间r7knjye21#
这是我正在使用的代码片段,以确保将
first_open
事件发送到Firebase控制台。我已经通过查看Firebase控制台进行了验证。接收
first_open
事件。尽管如此,我还是不确定为什么需要这样的额外代码片段。我想应该是自动发送的吧?