gpt4 book ai didi

ios - 使 UISearchBar 背景清晰

转载 作者:IT王子 更新时间:2023-10-29 08:01:51 24 4
gpt4 key购买 nike

我无法清除搜索栏 我试图通过将其背景颜色设置为清晰来使其清晰,并且还在搜索栏下放置了一张图片

搜索栏的背景我也弄清楚了

 for (UIView *subview in self.searchBarHome.subviews) {
if ([subview isKindOfClass:NSClassFromString(@"UISearchBarBackground")]) {
[subview removeFromSuperview];//please help me to make clear background of uisearchbar
break;
}
}
[self.searchBarHome setBackgroundColor:[UIColor clearColor]];

最佳答案

对于 iOS7+,您需要做的就是:

[self.searchBarHome setBackgroundColor:[UIColor clearColor]];
[self.searchBarHome setBarTintColor:[UIColor clearColor]]; //this is what you want

注意:这不适用于 iOS6


对于 iOS6+,即使在 iOS7 中,以下内容也会处理它:

[self.searchBarHome setBackgroundColor:[UIColor clearColor]];
[self.searchBarHome setBackgroundImage:[UIImage new]];
[self.searchBarHome setTranslucent:YES];

关于ios - 使 UISearchBar 背景清晰,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20993092/

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