私はまだコーディングに慣れていないので、以前に尋ねられたこの質問を許してください. コードのどこが間違っているか教えてもらえますか?
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = (UITableViewCell *)[self.tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}
// Display friends in the table cell
if (tableView == self.searchDisplayController.searchResultsTableView) {
self.friends = [searchResults objectAtIndex:indexPath.row];
}
else {
PFUser *user = [self.friends objectAtIndex:indexPath.row];
}
PFUser *user = [self.friends objectAtIndex:indexPath.row];
cell.textLabel.text = user.username;
return cell;
}