当我去登录用户时,收到错误消息:[Error]: Invalid username/password. (Code: 101, Version: 1.12.0)
。用户存在,显示在Parse Dashboard中,我可以注册就好了。我已经对这个主题进行了研究,我找到了this post,但它似乎不适用于真实设备和模拟器。
Xcode:7.3 iOS:9.3
我的代码如下:
PFUser.logInWithUsernameInBackground((usernameField?.text)!, password: (passwordField?.text)!) { (user: PFUser?, error: NSError?) -> Void in
if error == nil {
//Segue to account
self.defaults.data.setValue(self.usernameField?.text, forKey: "currentUser")
self.presentViewController(AccountInterface(), animated: true, completion: {
})
} else {
print(error?.description)
}
}
谢谢