我对我的应用程序中的错误感到疯狂。 我使用新的Firebase来验证用户+ Firebase数据库
2种注册/签名方式:电子邮件或Facebook。
在我的应用程序中,我有一个带有简单命令的注销按钮:
try! FIRAUTH.auth()!.signOut()
self.performSegueWithIdentifier("firstScreen", sender: self)
工作正常。
在同一部iPhone上,我的测试:
我检索与我的个人资料帐户完全相同的数据。 就好像我没有真正退出。
我必须在注销后杀死应用程序才能获得与我使用的帐户相对应的数据。
你知道吗? 当我杀死app任务时,究竟发生了什么?非常感谢您的回答。
答案 0 :(得分:0)
之前我处理过同样的问题,问题是当你退出firebase时你也必须注销facebook。
try! FIRAUTH.auth()!.signOut()
let loginManager = FBSDKLoginManager()
loginManager.logOut()
self.performSegueWithIdentifier("firstScreen", sender: self)
如果您没有,则在登录时将继续获取相同的数据。
答案 1 :(得分:0)
感谢Justin,但不幸的是,这与您的解决方案完全相同。 也许我在AppDelegate上出错了,在那里我检查用户离开App时是否已连接:
//check if user has a currentUser ID
//if Yes, we check if he has a username
//if Yes, he goes to vc (first viewcontroller)
//if not, he geos to the vc2 where he chooses a username
if ((FIRAuth.auth()!.currentUser) != nil){
userID = String(FIRAuth.auth()!.currentUser!.uid)
ref.child("Users").child(userID).child("name").observeSingleEventOfType(FIRDataEventType.Value, withBlock: { (snapshot) in
if (snapshot.value as? String == ""){
self.window?.rootViewController = vc2
}else{
self.window?.rootViewController = vc
}
})
}