Xcode 8.3.3:如何记住用户名和密码并添加Touch-ID身份验证

问题描述:

我目前的项目有一个登录页面,但我发现用户必须在登录时再次输入他们的用户名和密码。通过实现“记住用户名和密码”功能并添加Touch ID,对他们更容易些吗?Xcode 8.3.3:如何记住用户名和密码并添加Touch-ID身份验证

我的代码如下:

进口的UIKit

进口火力地堡

类LoginViewController:UIViewController的{

var imageView: UIImageView! 

override func viewDidLoad() { 
    super.viewDidLoad() 
    imageView = UIImageView(frame: view.bounds) 
    imageView.contentMode = .scaleAspectFill 
    imageView.clipsToBounds = true 
    imageView.image = #imageLiteral(resourceName: "background") 
    imageView.center = view.center 
    view.addSubview(imageView) 
    self.view.sendSubview(toBack: imageView) 

} 

//Outlets 
@IBOutlet weak var emailTextField: UITextField! 
@IBOutlet weak var passwordTextField: UITextField! 


//Login Action 
@IBAction func loginAction(_ sender: AnyObject) { 
    if self.emailTextField.text == "" || self.passwordTextField.text == "" { 

     //Alert to tell the user that there was an error because they didn't fill anything in the textfields because they didn't fill anything in 

     let alertController = UIAlertController(title: "Error", message: "Please enter an email and password.", preferredStyle: .alert) 

     let defaultAction = UIAlertAction(title: "OK", style: .cancel, handler: nil) 
     alertController.addAction(defaultAction) 

     self.present(alertController, animated: true, completion: nil) 

    } else { 

     Auth.auth().signIn(withEmail: self.emailTextField.text!, password: self.passwordTextField.text!) { (user, error) in 

      if error == nil { 

       //Print into the console if successfully logged in 
       print("You have successfully logged in") 

       //Go to the HomeViewController if the login is sucessful 
       let vc = self.storyboard?.instantiateViewController(withIdentifier: "Home") 
       self.present(vc!, animated: true, completion: nil) 

      } else { 

       //Tells the user that there is an error and then gets firebase to tell them the error 
       let alertController = UIAlertController(title: "Error", message: error?.localizedDescription, preferredStyle: .alert) 

       let defaultAction = UIAlertAction(title: "OK", style: .cancel, handler: nil) 
       alertController.addAction(defaultAction) 

       self.present(alertController, animated: true, completion: nil) 
      } 
     } 
    } 
} 

你有一对夫妇的方式来保存您的用户凭据。最常见的方法是将它们保存在钥匙串中。

KeyChain Swift

之后,你可以用户的touchID认证,通过调用默认的方法来实现这一点。这里是一个很好的教程你应该怎么做:

Touch ID for Local Authentication