在 parse 的博客上,他们说你可以使用:
[PFUser becomeInBackground:@"session-token-here"; block:^(PFUser *user, NSError *error) {
if (error) {
// The token could not be validated.
} else {
// The current user is now set to user.
}
}];
用于在自定义基础上处理登录。但是,在尝试运行此代码时出现多个错误,基本上是说它找不到 becomeInBackground 的 instanceMethod。这是怎么回事?