gpt4 book ai didi

ios - Firebase 使 iMessage 扩展崩溃

转载 作者:行者123 更新时间:2023-11-28 15:11:15 25 4
gpt4 key购买 nike

在我的 MessagesViewController(第一个要加载的 View Controller )中,我有代码:

    override func viewDidLoad() {
super.viewDidLoad()
FirebaseApp.configure()
ref = Database.database().reference()
}

最初它可以将 firebase 加载到我的 iMessage 扩展程序中,但是当它在应用程序退出并且您正在查看记录时尝试再次运行时它崩溃了。我使用断点来定位错误,它是 FirebaseApp.configure() 第二次运行。有谁知道如何防止这种崩溃?

最佳答案

我已经完成了:

    override func viewDidLoad() {
super.viewDidLoad()
if(FirebaseApp.app() == nil){
FirebaseApp.configure()
ref = Database.database().reference()
}
}

关于ios - Firebase 使 iMessage 扩展崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47603187/

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