我正在使用firebase Auth for iOS。
FIRAuth.auth()?.createUserWithEmail(email!, password: password!, completion: { (user: FIRUser?, error) in
if error == nil {
//self.labelMessage.text = "You are successfully registered"
self.dismissViewControllerAnimated(true, completion: nil)
}else{
}
})
这是我在做的时候得到的
print(error)
注册可选时出错(错误域= FIRAuthErrorDomain代码= 17007"电子邮件地址已被其他帐户使用。" UserInfo = {NSLocalizedDescription =该电子邮件地址已被其他帐户使用。 ,error_name = ERROR_EMAIL_ALREADY_IN_USE})
我想访问错误对象以编程方式获取消息。
之类的东西error.error_name ?
感谢。