gpt4 book ai didi

ios - UISearchBar - UISearchBar 的不同表格 View 背景

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:12:50 26 4
gpt4 key购买 nike

当我在 UISearchBar 上搜索时,我的普通 tableView 已设置为

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath; 

{

CustomCell *cell=(CustomCell *)[FieldTableView dequeueReusableCellWithIdentifier:@"Cell"];

//set cell background color cleare color
cell.backgroundColor=[UIColor clearColor];

if (isSearching) {
cell.AddPFFieldLable.text = [filteredContentList objectAtIndex:indexPath.row];
} else {
cell.AddPFFieldLable.text=[[fieldArray objectAtIndex:indexPath.row]valueForKey:@"FName"];
}

My Normal TableView

但是当我搜索任何东西时它会显示这样

how to change its background color to clearcolor

如何将它的背景颜色更改为clearColor

最佳答案

好的,我得到了查询的答案

[self.searchDisplayController.searchResultsTableView setBackgroundColor:[UIColor clearColor]];

我的 viewDidLoad 中唯一缺少的东西。

关于ios - UISearchBar - UISearchBar 的不同表格 View 背景,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35221460/

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