UiSearchDisplayController没有显示结果

时间:2014-07-30 00:30:47

标签: ios uitableview uisearchbardisplaycontrol

我仍然是编码的新手所以请原谅我之前提出的这个问题,但是我看了一下这些问题并且我使用了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;

}

0 个答案:

没有答案