Skip to content

Instantly share code, notes, and snippets.

@zontan
Created September 9, 2020 00:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zontan/234b8bd5a691b83eae5b6ffd2d7e1f82 to your computer and use it in GitHub Desktop.
Save zontan/234b8bd5a691b83eae5b6ffd2d7e1f82 to your computer and use it in GitHub Desktop.
var handle: AuthStateDidChangeListenerHandle?
var currentUser: User?
override func viewWillAppear(_ animated: Bool) {
handle = Auth.auth().addStateDidChangeListener { (auth, user) in
if let user = user {
self.currentUser = user
}
}
}
override func viewWillDisappear(_ animated: Bool) {
if let handle = handle {
Auth.auth().removeStateDidChangeListener(handle)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment