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