Firebase completion listeners in swift

后端 未结 3 1026
夕颜
夕颜 2020-12-18 13:38

How do you execute a completion listener for firebase in swift? It says there are completion listers for SetValue and UpdateValue in the docs but there is no example.

3条回答
  •  醉话见心
    2020-12-18 13:51

    The completion of a setValue is handled within the {} block (closure). So once the attempt to setValue is made, the code within that block executes. error will be nil if none and snapshot will be the data that was written.

    let ref = self.myRootRef.child("some_path")
        ref.setValue("Hello", withCompletionBlock: { (error, snapshot) in
            if error != nil {
                print("oops, an error")
            } else {
                print("completed")
            }
        })
    

    gives a result of

    root_ref
       some_path: Hello
    

    and prints "completed"

提交回复
热议问题