表视图上的搜索栏崩溃

时间:2014-07-19 00:21:49

标签: ios7 xcode5 uisearchbar

表加载得很好。但是当我在搜索栏中输入任何内容时,我的应用程序崩溃了。有任何想法吗?我已经搜遍了所有但无法找到解决方案。这是我的代码:

    - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    FGProfileListUserCell *cell = [self.tableView dequeueReusableCellWithIdentifier:ProfileListUserCellIdentifier];
    if (cell == nil) {
        cell = [[FGProfileListUserCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:ProfileListUserCellIdentifier];
        cell.lblUsername.text = [searchResults objectAtIndex:indexPath.row];
    }
    if (tableView == self.searchDisplayController.searchResultsTableView) {
            cell.lblUsername.text = [searchResults objectAtIndex:indexPath.row];
    }
    else {
        cell.lblUsername.text = [arrayUsernames objectAtIndex:indexPath.row];
    }
    NSLog(@"Return Cell");


        return cell;
}

enter code here

0 个答案:

没有答案