LoginSignup
0
2

More than 3 years have passed since last update.

【新規登録】新規ユーザー登録の機能

Posted at
// 新規登録
Auth.auth().createUser(withEmail: emailTextField.text!,
   password: passwordTextField.text!) { (user, error) in

// nilでない場合
   if error != nil{

       print(error)

   }else{

// userに値が入った場合

       print("ユーザーの作成がうまくいきました!")

   }
}

0
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
2