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

前端 未结 7 2249
生来不讨喜
生来不讨喜 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:49

    if FIRAuth.auth().currentUser != nil {
       presentHome()
    } else {
       //User Not logged in
    }
    

    For updated SDK

    if Auth.auth().currentUser != nil {
    
    }
    

提交回复
热议问题