Добавление нескольких пользователей одновременно в задачу PFRelation IOS c

Я хочу добавить нескольких пользователей, которых я запрашивал, к PFRelation одновременно. Как мне сделать это? Также будет ли вся информация о пользователях храниться в PFRelation, чтобы текущий пользователь мог получить к ней доступ позже?

//so now i am finding users in the PFRelation, but I cannot use the Users information in a table. The code for the table view is at the bottom. 
PFQuery * query =[self.matchesRelation query];
    [query orderByDescending:@"Score"];
    [query findObjectsInBackgroundWithBlock:^(NSArray *objects, NSError *error) {
        if (!error) {

            self.myMatches =[objects mutableCopy];
            [self.tableView reloadData];




        }

    }];




//code for the tableview, i can set the users username fine but anything else i cant

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    static NSString * CellIdentifier =@"Cell";
    customCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];

    self.person =[self.myMatches objectAtIndex:indexPath.row];




    cell.name.text = self.person.username;
   //this does not work, why ? 
   cell.score.text =[self.person objectForKey:@"Score"];


    return cell;
}

1 ответ

Просто переберите предметы в вашем self.myMatches массив, добавляя каждый к myMatches связь.

Когда вы закончите, просто сохраните родительский объект, который содержит отношение, которое в вашем случае [PFUser currentUser],

Другие вопросы по тегам