我已经遇到过这个问题并且已经尝试解决它几天了,似乎我尝试的所有内容都会产生更多错误。我在创建使用此功能的用户时遇到问题,请使用FIRAuth并告诉我在进入之前添加;
,但它并没有解决问题。
错误图片:
func handleRegistration() {
guard let email = emailTextField.text, let password = passTextField.text
else {
print("Form is not Valid")
return
}
FIRAuth.auth()?.createUser(withEmail: email, password: password, completion: FIRUser?, error) in
if error != nil {
print("Error")
return
}
print("Login Successful")
}
答案 0 :(得分:4)
试试这个: -
FIRAuth.auth()?.createUser(withEmail: email, password: password, completion: {(user, error) in
if error != nil {
print("Error")
return
}else{
print("Login Successful")
return
}
})