Firebaseに慣れていないので、Xcode 8で「Remember Me」チェックボックスを作成して、彼/彼女は "私を覚えている"チェックボックスをチェックするとログインする機能。Firebase&Xcode 8:「Remember Me」チェックボックスを追加してログインとアクティビティインジケータを表示する
ユーザーが「ログイン」をタップしたが、失敗した後もアクティビティインジケータビューを挿入したいと考えています。そのスピナーの小さなものは回転し続け、常に画面にとどまります。ユーザーが「ログイン」をタップした後、画面を暗くしてスピナーを回転させたい。
これは私のコードです。
import UIKit
import Firebase
class 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)
}
}
}
}
ここで質問は何ですか?アクティビティインジケータを表示および非表示にするコードを記述するようにお願いしていますか?あなたは画面を暗くする方法を尋ねていますか? Firebaseとの接続は何ですか? – Jay
主に、アクティビティインジケータを表示および非表示にします。私はストーリーボードで(ビューコントローラーにドラッグして)それを試しましたが、私はいくつかのコード作業が完了すると思います。 –
Firebaseは賢明ですが、特定のfirebase機能を利用する "remember me"機能を追加する方法があるかどうかはわかりません。あるいは、問題を解決する別の方法があるかもしれません。 –