高さを 57 に設定して、ストーリーボードでカスタム セルを使用します。
tableView で検索するとUISearchDisplayController
、カスタム セルが返されますが、高さが正しくありません。
コード:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellReuseIdentifier = @"Cell";
CommemorativeItemCell *cell =[self.tableView dequeueReusableCellWithIdentifier:CellReuseIdentifier];
KmCell *kmCell=nil;
if(tableView==self.searchDisplayController.searchResultsTableView)
{
kmCell=[self.filteredResult objectAtIndex:[indexPath row]];
}
else
{
kmCell=[self.arr objectAtIndex:[indexPath row]];
}
// bla bla filling up and drawing labels...
return cell;
}
UISearchDisplayController が返すセルを同じ高さにするにはどうすればよいですか? 前もって感謝します。