0
我讓用戶使用parse來註冊系統,但即使有一個字符串傳遞給PFUser的用戶名屬性,它也會一直說「無法用戶名無法註冊」。什麼導致這個錯誤?解析「無法註冊用戶名」
let user = PFUser()
user.signUpInBackgroundWithBlock{(success:Bool,error:NSError?)-> Void in if error==nil{
user.username = self.username.text!
user.password=self.Password.text!
user.email=self.Email.text!
self.navigationController?.pushViewController(UploadImageViewController(),animated:true)
}
else {let errorMessage: String = error!.userInfo["error"] as! String;self.displayErrorMessage(errorMessage)}
}