我仍然是编码的新手所以请原谅我之前提出的这个问题,但是我看了一下这些问题并且我使用了appcoda的教程作为我的参考指南,但我仍然坚持不让搜索栏显示名字。任何人都可以告诉我我在代码中出错了吗?
- (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;
}