0
나는 다음과 같은 오류를 받고 있어요
을에서 "어설 션 실패"를 얻기가 UISearchResultsTableView
Assertion failure in -[UISearchResultsTableView _configureCellForDisplay:forIndexPath:]
은 다음과 Search Display Controller
에 대한 나의 cellForRowAtIndexPath
코드가 될 때 :
if(tableView == self.searchDisplayController.searchResultsTableView)
{
static NSString *CellIdentifier = @"cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if(cell == nil)
{
cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
}
cell.textLabel.text = [search objectAtIndex:indexPath.row];
return cell;
}
고마워요 :) –
맞춤형 셀을 사용하고 싶습니다. –
커스텀 XIB 파일을 다르게 가지고 있지 않다. –