Retrieve data from new Firebase

前端 未结 9 3056
醉梦人生
醉梦人生 2021-02-15 23:40

Please help. After migrating to new Firebase I can\'t retrieve data. Use this construction:

let ref = FIRDatabase.database().reference()

override func viewDidL         


        
9条回答
  •  天命终不由人
    2021-02-16 00:32

    I didn't see this answer yet, I had to add the configure call to the AppDelegate init method. So it looks like:

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

提交回复
热议问题