Last active
December 27, 2017 05:19
-
-
Save davideast/29e2717cef76e63fe0a9 to your computer and use it in GitHub Desktop.
Using Firebase references in a UIViewController
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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