Firebase在启动时随机崩溃

时间:2018-12-21 02:57:30

标签: ios swift firebase firebase-realtime-database singleton

我很快有了一个Firebase应用程序。现在我的问题很容易解释,但调试起来很奇怪。

问题: 每当我打开应用程序时,它就可以正常工作。可以完成应有的一切。但是,当我只是将应用程序在后台放置一会儿并打开它时,就会崩溃。我必须重新打开它两次才能使崩溃消失或杀死它。

重新产生错误: 第1步:打开App(在其中执行某项操作或将其保留),然后回到家中而不杀死它,将其保留在后台

步骤2:过一会儿打开应用程序。 --->导致崩溃

第3步:过了一段时间后立即或立即在第2步之后再次打开--->再次崩溃

步骤4:第三次打开。 --->完全正常。

注意:要避免崩溃,我将始终必须将其杀死。总体而言,这是糟糕的UX。

此外,我还向我的滑雪者查询。他们运作正常。但是当它崩溃时,我会收到此错误:

2018-12-20 19:05:44.272413-0800 SpotMi[15557:862318] *** Terminating app due to uncaught exception 'FIRAppNotConfigured', reason: 'Failed to get default Firebase Database instance. Must call `[FIRApp configure]` (`FirebaseApp.configure()` in Swift) before using Firebase Database.'
*** First throw call stack:
(0x1a1e2bea0 0x1a0ffda40 0x1a1d32674 0x1030c8d20 0x102f9cd24 0x102f992b0                     0x102f9926c 0x10f928dc8 0x10f92ae28 0x10ef95e18 0x102f9935c 0x102f49644     0x102f4a55c 0x102f4ad94 0x102e03b18 0x102d5cd4c 0x102f49260 0x102f493b0 0x102f4ac74 0x102f4b11c 0x102dbaf3c 0x102dbafd8 0x1cea6620c 0x1cea6663c 0x1cf0551e4 0x1cf051200 0x1cf0240a0 0x1cf02585c 0x1cf02b2a8 0x1ce8c7358 0x1ce8cffd8 0x1ce8c6fd4 0x1ce8c7974 0x1ce8c5a74 0x1ce8c5720 0x1ce8ca8e0 0x1ce8cb840 0x1ce8ca798 0x1ce8cf684 0x1cf0297a0 0x1cec12bac 0x1a48609d4 0x1a486b79c 0x1a486ae94 0x10f928dc8 0x10f92ca10 0x1a489fa9c 0x1a489f728 0x1a489fd44 0x1a1dbc1cc 0x1a1dbc14c 0x1a1dbba30 0x1a1db68fc 0x1a1db61cc 0x1a402d584 0x1cf02d054 0x102d5da9c 0x1a1876bb4)
libc++abi.dylib: terminating with uncaught exception of type NSException

Appdelegate:

func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {

    #if DEVELOPMENT
    print("Development Mode Started")
    let filePath = Bundle.main.path(forResource: "GoogleService-Info", ofType: "plist")
    guard let fileopts = FirebaseOptions.init(contentsOfFile: filePath!)
        else {
            fatalError("Couldn't load config file")
    }
    FirebaseApp.configure(options: fileopts)

    #else
    print("Production Mode Started")
    FirebaseApp.configure()
    #endif

    return true
}

我尝试将此补丁放入init(),但是通知停止工作。

我应该如何解决这个问题。我在做什么错了?

让我知道是否需要更多信息。

我的火力基地单身人士如下:

class FBDataservice : NSObject {

static var ds = FBDataservice() //<-------- Always crahses on this line

let DB_URL: DatabaseReference = Database.database().reference()
let ST_URL: StorageReference = Storage.storage().reference()

private lazy var _REF_BASE = DB_URL
private lazy var _REF_POSTS = DB_URL.child("key1")
private lazy var _REF_USERS = DB_URL.child("key2")

private lazy var _ST_REF_PROFPOST = ST_URL.child("key3")

var REF_BASE: DatabaseReference! {
    return _REF_BASE
}

var REF_POSTS: DatabaseReference! {
    return _REF_POSTS
}

var REF_USERS: DatabaseReference! {
    return _REF_USERS
}

var REF_POST_USERIMG: StorageReference {
    return _ST_REF_USERPOST
}


}

2 个答案:

答案 0 :(得分:5)

AppDelegate将初始化所有初始视图控制器(以及标签导航控制器中的所有主视图控制器),并在应用程序启动期间对其调用viewDidLoad()。这是设计使然(viewController's viewdidload called before appDelegate's method

问题是使用init()或ds方法访问viewDidLoad()变量。这导致在对FirebaseApp.configure()的调用与每个viewDidLoad()方法的调用之间发生竞争情况。如果FirebaseApp.configure()在视图控制器初始化之前完成,就可以了。

要解决此问题,您需要自己进行情节提要初始化。这需要两个步骤:

  1. 在Xcode-> General中选择您的项目。向下滚动到主界面并将其删除
  2. 在您的AppDelegate applicationDidFinishLaunching方法中,按如下所示初始化所需的故事板:

    class AppDelegate: UIResponder, UIApplicationDelegate {
        var window: UIWindow?
        func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
    
        // configure Firebase
    
        window = UIWindow(frame: UIScreen.main.bounds)
        let storyboard = UIStoryboard(name: "Main", bundle: nil)
        window?.rootViewController = storyboard.instantiateInitialViewController()
        self.window?.makeKeyAndVisible()        
    
        return true
        }
    }
    

答案 1 :(得分:0)

我假设连接到Firebase花费的时间太长,所以当代码中的依赖项得到满足时,应用程序将不知道该怎么做。您可以尝试将与连接相关的代码(Firebase.configure)放入try-catch块中,以查看发生了什么情况。