Skip to content

Instantly share code, notes, and snippets.

@davideast
Last active December 27, 2017 05:19
Show Gist options
  • Star 7 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save davideast/29e2717cef76e63fe0a9 to your computer and use it in GitHub Desktop.
Save davideast/29e2717cef76e63fe0a9 to your computer and use it in GitHub Desktop.
Using Firebase references in a UIViewController
import UIKit
class MyViewController: UIViewController {
// Store ref and handle as implicitly unwrapped optionals
var ref: Firebase!
var handle: UInt!
override func viewDidLoad() {
super.viewDidLoad()
// Initialize Reference
ref = Firebase(url: "https://<YOUR-FIREBASE-APP>.firebaseio.com/")
}
override func viewWillAppear(animated: Bool) {
super.viewWillAppear(animated)
// Create listener and store handle
handle = ref.observeEventType(.Value) { print($0) }
}
override func viewDidDisappear(animated: Bool) {
super.viewDidDisappear(animated)
// Remove listener with handle
ref.removeObserverWithHandle(handle)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment