Where to add Firebase Database Reference in iOS Obj-C

前端 未结 2 761
滥情空心
滥情空心 2021-01-25 16:11

I\'m setting up a realtime database through Firebase and am confused where to put the following line of code:

self.ref = [[FIRDatabase database] reference];
         


        
2条回答
  •  耶瑟儿~
    2021-01-25 17:05

    To address this, I added the following line under (at)interface in my App Delegate:

    @property FIRDatabaseReference *ref;
    

    Then I could add the following under didFinishLaunchingWithOptions:

    self.ref = [[FIRDatabase database] reference];
    

提交回复
热议问题