2017-07-17 4 views
0

私の現在のプロジェクトにログインページがありますが、ログイン時にユーザー名とパスワードを再度入力する必要があります。 「ユーザー名とパスワードを覚えている」機能を実装し、Touch IDを追加することで、より簡単にできます。次のようにXcode 8.3.3:ユーザー名とパスワードを記憶してタッチID認証を追加する方法

私のコードは次のとおりです。

輸入のUIKit

輸入Firebase

クラス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) 
      } 
     } 
    } 
} 

答えて

0

あなたは、ユーザーの資格情報を保存するいくつかの方法があります。最も一般的な方法はKeychainに保存することです。その後

KeyChain Swift

あなたはこれを実装するために、デフォルトのメソッドを呼び出すことで、ユーザーごtouchID認証をすることができます。いい方法のチュートリアルです:

Touch ID for Local Authentication

関連する問題