Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save shrawan2015/3f8661e51218a23e16fba1461bde59a0 to your computer and use it in GitHub Desktop.
Save shrawan2015/3f8661e51218a23e16fba1461bde59a0 to your computer and use it in GitHub Desktop.
completion of call
ref.child("users").child(user.uid).setValue(["username": username]) {
(error:Error?, ref:DatabaseReference) in
if let error = error {
print("Data could not be saved: \(error).")
} else {
print("Data saved successfully!")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment