カスタムセルを使用してTableViewのボタンを使用してPFRelationを作成しようとしていますが、これらの関係を作成できません。選択したセルに関係なく、特定のユーザーとの関係のみを作成します。..
私はどこで間違っていますか?
- (IBAction)FFAddAmiciAction:(id)sender {
NSIndexPath *indexPath = [[self tableView] indexPathForSelectedRow];
PFObject *searchedUser = [self.objects objectAtIndex:indexPath.row];
PFUser *user = [PFUser currentUser ];
PFRelation *relation = [user relationforKey:@"Amic"];
[relation addObject:searchedUser];
[user saveInBackground];
}