私は、ユーザーが意見を書き、友人だけがタイムラインでそれらを見てコメントできるアプリを持っています ( 「OpTimelineTableViewController」と呼ばれるUITableViewControllerサブクラス内)。しかし、以前に解決策を試しても結果が得られなかったにもかかわらず、この制限クエリを適切に実行する方法について質問があります... (データモデルを紹介し始めます):
「ユーザー」テーブル(Parse が提供する組み込みクラスです)
「意見」表:
オブジェクト ID;
送信者 ID; ポインター ユーザー テーブル
コンテンツ; 弦
更新された; (デフォルトで提供)
作成された; (デフォルトで提供)
「友達」テーブル:
friendId1 = ポインター ユーザー テーブル
friendId2 = ポインター ユーザー テーブル
status = 「確認」、「保留」、または「拒否」を受けることができる文字列
updatedAt = (デフォルトで提供)
createdAt = (デフォルトで提供)
これは、私が試したコードの主要な重要部分です。
- (void)loadOpinions {
PFQuery *opinionQuery = [PFQuery queryWithClassName:@"Opinion"];
[opinionQuery orderByDescending:@"createdAt"];
[opinionQuery findObjectsInBackgroundWithBlock:^(NSArray *objects, NSError *error) {
if (!error) {
// Array declared as property in the ".h" that contains Opinion objects
self.opinionArray = [[NSArray alloc] initWithArray:objects];
}
[self.tableView reloadData];
[self.refreshControl endRefreshing];
}];
}
#pragma mark - Table view data source
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return self.opinionArray.count;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
OpinionTimelineCell *opCell = [tableView dequeueReusableCellWithIdentifier:@"OpTimelineCell" forIndexPath:indexPath];
// self.tempOpObj is an instance of PFObject declared in the ".h" that contains opinion object (for the appropriate index) contained in the opinionArray
self.tempOpObj = [self.opinionArray objectAtIndex:indexPath.row];
// Now I query "User" table to retrieve all users that have posted Opinions:
PFQuery *UserOpinionQuery = [PFUser query];
// I do a restriction between users that are contained in the "Opinion" table:
[UserOpinionQuery whereKey:@"objectId" equalTo:[[self.tempOpObj objectForKey:@"senderId"]objectId]];
[UserOpinionQuery findObjectsInBackgroundWithBlock:^(NSArray *objects, NSError *error) {
if (!error) {
// "userOpInfo" is an instance of PFUser declared in the ".h" that contains the last of object retrieved in "objects":
self.userOpInfo = [objects lastObject];
opCell.opinionUsername.text = self.userOpInfo.username;
}
}];
opCell.opinionContent.text = [self.tempOpObj objectForKey:@"content"];
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
dateFormatter.dateFormat = @"mm-DD-yyyy";
opCell.opinionDate.text = [dateFormatter stringFromDate:self.tempOpObj.createdAt];
[opCell setSelectionStyle:UITableViewCellSelectionStyleNone];
// ? Query to restrict visible Opinion posts only if users are a current user friend:
PFQuery *restrictFriendQuery = [PFQuery queryWithClassName:@"Friends"];
[restrictFriendQuery whereKey:@"friendId1" equalTo:[PFUser currentUser]];
[restrictFriendQuery whereKey:@"friendId2" equalTo:[self.userOpInfo objectId]];
[restrictFriendQuery whereKey:@"status" equalTo:@"Confirm"];
// Is that way the best ??
[restrictFriendQuery findObjects];
return opCell;
}
私の問題はその時点にあります: セルの数が Opinions に含まれるOpinionsの数に依存していることを知ることによって、他のクエリよりも前にどのクエリを実行するかを知る方法、または単に: 表示される意見のみを制限してクエリを実行する方法現在のユーザーの友達 ?
(注: 私はメソッド [self.performSelector(loadOpinions)....... を viewDidLoad で実装したことを正確に説明します)
私のコードは明確ではないようです 私は大丈夫です、これが私がそれを行う簡単な方法を見つけられない理由です
誰かがそれを修正する方法を手伝ってくれますか?