How to check if user has valid Auth Session Firebase iOS?

前端 未结 7 2245
生来不讨喜
生来不讨喜 2021-02-19 04:53

I wanna check if the user has still a valid session, before I present the Home View controller of my app. I use the latest Firebase API. I think if I use the legacy, I\'ll be ab

7条回答
  •  一生所求
    2021-02-19 05:42

    override func viewDidLoad() {
    FIRAuth.auth()!.addStateDidChangeListener() { auth, user in
                // 2
                if user != nil {
                    let vc = self.storyboard?.instantiateViewController(withIdentifier: "Home")
                    self.present(vc!, animated: true, completion: nil)
                }
            }
    }
    

    Source: https://www.raywenderlich.com/139322/firebase-tutorial-getting-started-2

提交回复
热议问题