Skip to content

Instantly share code, notes, and snippets.

@zontan
Created September 9, 2020 00:18
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/fce3dabe37d032c74f5d291845e1b081 to your computer and use it in GitHub Desktop.
Save zontan/fce3dabe37d032c74f5d291845e1b081 to your computer and use it in GitHub Desktop.
var handle: AuthStateDidChangeListenerHandle?
override func viewWillAppear(_ animated: Bool) {
handle = Auth.auth().addStateDidChangeListener { (auth, user) in
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