Другой способ - просто использовать тот же идентификатор ячейки (по крайней мере, если вы используете раскадровки), например:
static NSString *CellIdentifier = @"searchCell";
myCustomCell *cell = (myCustomCell *)[tableView dequeueReusableCellWithIdentifier:CellIdentifier];
//for search controller need to check if cell is nil, if it is create one since there won't be any to reuse to begin with
if (!cell) {
cell = (myCustomCell *)[self.tableView dequeueReusableCellWithIdentifier:CellIdentifier];
[cell setAccessoryType:UITableViewCellAccessoryDisclosureIndicator];
}
Другие свойства, такие как высота строк и т. Д., Могут быть установлены путем доступа к свойствам.из
self.searchDisplayController.searchResultsTableView