我如何使用解析检索公会中的所有公会成员?
这是我的代码:
PFUser *currentuser = [PFUser currentUser];
PFQuery *query = [PFQuery queryWithClassName:@"User"];
[query whereKey:@"connectedGuild" equalTo:currentuser[@"connectedGuild"]];
[query findObjectsInBackgroundWithBlock:^(NSArray *comments, NSError *error) {
NSLog(@"There are %d guildmembers. Error:%@", comments.count, error);
}];
我的日志:
公会成员 0 人。错误:(空)
connectedGuild 是一个指向我存储所有公会的公会类的指针。