Retrieve data from new Firebase

前端 未结 9 2832
醉梦人生
醉梦人生 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:22

    In my case I had to change the configure to be called before calling the super applicationDidLaunch:

    [FIRApp configure];
    
    [super application:application didFinishLaunchingWithOptions:launchOptions];
    

提交回复
热议问题