Skip to content

Instantly share code, notes, and snippets.

@zontan
Created September 23, 2019 18:27
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/0bedc20d026a70f60f81da9a19ef61d6 to your computer and use it in GitHub Desktop.
Save zontan/0bedc20d026a70f60f81da9a19ef61d6 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
self.currentUser = user
if user == nil {
self.showFUIAuthScreen()
}
}
}
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