gpt4 book ai didi

调用 FIRApp.configure() 后未配置 iOS Firebase 应用程序

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:55:32 26 4
gpt4 key购买 nike

我有一个 iOS (Swift) 应用程序,在 AppDelegate 中包含以下代码:

func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
FIRApp.configure()
FIRDatabase.database().persistenceEnabled = true
return true
}

应用程序在 persistenceEnabled = true 行崩溃,异常 FIRAppNotConfigured,消息 “无法获取默认的 FIRDatabase 实例。必须调用 FIRApp.configure () 在使用 FIRDatabase 之前。”

显然,我在此之前立即调用了 FIRApp.configure(),因此建议的解决方案是不正确的。调用时,日志输出甚至显示 "Configuring the default app"

问题可能是什么,我该如何解决才能使用 FIRDatabase?

最佳答案

尝试:

override init() {
// Firebase Init
FIRApp.configure()
}

关于调用 FIRApp.configure() 后未配置 iOS Firebase 应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39534340/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com