如何检查用户是新用户还是旧用户

时间:2016-11-24 13:25:57

标签: ios swift firebase firebase-authentication

我有一个登录屏幕,其中包含电子邮件,密码。在用户注册后的注册屏幕中,他们将登录登录屏幕。

那个时候我需要检查,如果用户是第一次用户或旧用户。如果第一次用户意味着我需要将它们重定向到我的反馈屏幕。或者旧用户意味着我需要将它们重定向到我的主屏幕。如何用firebase做到这一点?

她的登录界面代码:

 @IBAction func loginWithUserNamePassword(){


    loginWithMailAndPassword((username.text?.trimWhiteSpace)!, password: (password.text?.trimWhiteSpace)!) { (user, error) in

        if error != nil{

            KRProgressHUD.dismiss()
            SCLAlertView().showError("Login Error", subTitle: error!.localizedDescription)


        }
        else {
            KRProgressHUD.dismiss()
            if user!.emailVerified{
                currentUser = user
                enableSync()
                self.callHomescreen()
            }
            else
            {
                AlertView().showError("Login Error", subTitle: "This email is has not been verified yet")
            }
        }

        }

    }

或者在我的反馈屏幕中有一些文本字段。模型类是:

var feedbackData = [files]()

class files {
// having some string variables
}

通过使用此功能,如果我的反馈屏幕中的数据为空,则会将用户重定向到反馈屏幕,或者将其重定向到主屏幕。我们可以这样做吗?

更新:

if profileData.FirstName.characters.count <= 0 {


             print("Home screen calling")

        }

        else if profileData.FirstName.characters.count > 0  {
             print("feedback screen calling")

        }

想到这样的想法。但没用。

1 个答案:

答案 0 :(得分:0)

如果我当前理解您的问题,一旦用户登录,您想要检查使用帐户的创建日期。为此,您有两种选择:

  1. 服务器端。如果您使用的是Firebase数据库,只需添加创建日期即可。 Firebase documantation未提供在应用端获取创建日期的方法。

  2. 应用方面。用户用户默认,当用户第一次登录时为该用户设置日期。当您再次进入登录屏幕时,请检查是否存在。我建议使用用户ID作为密钥。

  3. 例如: 您的用户刚刚登录,您想在第一次检查时是否检查过:

    if let displayName = FIRAuth.auth()?.currentUser?.displayName {
        //Make sure we have the user
        if UserDefaults.standard.bool(forKey: displayName) {
            // try to get the user default for the spacific key
            let wasConnected = UserDefaults.standard.bool(forKey: displayName)
            if wasConnected {
                 print("This user was connected")
            }
        } else {
            // This user was never connected
            // We set the default to his ID
            UserDefaults.standard.set(true, forKey: displayName)
            UserDefaults.standard.synchronize()
        }
    }
    

    要使用日期,我认为最简单的方法是convert the date to string

    摆弄代码,完全按照自己的意愿行事。