gpt4 book ai didi

ios - 带有原型(prototype)自定义单元格和搜索显示 Controller TableView 的 UITableView Controller

转载 作者:塔克拉玛干 更新时间:2023-11-02 07:51:10 25 4
gpt4 key购买 nike

有没有一种方法可以让我在搜索结果 Controller TableView 中拥有与我在 iOS5 中的 TableView Controller 的原型(prototype)单元格中完全相同的样式(高度、背景等)?

Root View 有背景图片和特定的单元格高度。搜索表不出现背景图片,单元格高度较低;

最佳答案

另一种方法是只使用相同的单元格标识符(至少如果您使用的是 Storyboard),例如:

    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 

关于ios - 带有原型(prototype)自定义单元格和搜索显示 Controller TableView 的 UITableView Controller ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9650257/

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