// 新規登録
Auth.auth().createUser(withEmail: emailTextField.text!,
password: passwordTextField.text!) { (user, error) in
// nilでない場合
if error != nil{
print(error)
}else{
// userに値が入った場合
print("ユーザーの作成がうまくいきました!")
}
}
More than 3 years have passed since last update.
Register as a new user and use Qiita more conveniently
- You get articles that match your needs
- You can efficiently read back useful information
- You can use dark theme