PFQueryTableViewController をサブクラス化しましたが、現在ログインしているユーザーのデータのみを返します。すべてのユーザーからデータを取得するにはどうすればよいですか?
コード クエリ用
- (PFQuery *)queryForTable {
PFQuery *query = [PFQuery queryWithClassName:self.parseClassName];
// If no objects are loaded in memory, we look to the cache first to fill the table
// and then subsequently do a query against the network.
//if (self.objects.count == 0) {
// query.cachePolicy = kPFCachePolicyCacheThenNetwork;
//}
//[query orderByDescending:@"QuestionA"];
//[query whereKey:@"post" equalTo:@"0"];
//NSLog(@"%@",query);
return query;
}