gpt4 book ai didi

ios - 如何更改搜索栏后面的背景颜色

转载 作者:行者123 更新时间:2023-11-29 10:31:30 24 4
gpt4 key购买 nike

我试图在 iOS7/8 中自定义我的 UISearchBar 并且我遇到了下一个问题:我的 searchDisplayController 背后的背景始终是浅灰色。这是它的样子:

enter image description here

这是我的一些搜索栏自定义代码:

self.searchDisplayController.searchResultsTableView.backgroundColor = UIColorFromRGB(0x171717);
self.searchDisplayController.searchContentsController.view.backgroundColor = UIColorFromRGB(0x171717);
self.searchDisplayController.searchResultsTableView.separatorStyle = UITableViewCellSeparatorStyleNone;
self.searchDisplayController.searchResultsTableView.tableFooterView = [[UIView alloc] initWithFrame:CGRectZero];

有什么办法可以解决吗?谢谢。

最佳答案

事实证明,这个灰色/白色背景是 refreshControl 的一部分。所以你所要做的就是初始化它并设置所需的背景颜色:

self.refreshControl                 = [[UIRefreshControl alloc] init];
self.refreshControl.backgroundColor = UIColorFromRGB(0x232323);

关于ios - 如何更改搜索栏后面的背景颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29366567/

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