gpt4 book ai didi

iOS6, Storyboard : UISearchDisplayController returns wrong custom UICell height

转载 作者:行者123 更新时间:2023-11-28 20:21:25 24 4
gpt4 key购买 nike

我在 Storyboard中使用自定义单元格,高度设置为 57。

enter image description here

在 tableView 中搜索时,UISearchDisplayController 返回我的自定义单元格,但高度错误。

enter image description here

代码:

- (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 返回的单元格高度相同?提前谢谢你。

最佳答案

您是否尝试过使用

在 vi​​ewDidLoad 中设置搜索结果单元格的高度
self.searchDisplayController.searchResultsTableView.rowHeight = 100;

关于iOS6, Storyboard : UISearchDisplayController returns wrong custom UICell height,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15771231/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com