gpt4 book ai didi

ios - 如何在 iOS 上更改 UISearchBar 组件的内部背景颜色

转载 作者:IT老高 更新时间:2023-10-28 11:29:21 26 4
gpt4 key购买 nike

我知道如何删除/更改搜索字段周围的 UISearchBar 背景颜色:

[[self.searchBar.subviews objectAtIndex:0] removeFromSuperview];
self.searchBar.backgroundColor = [UIColor grayColor];

achieved UISearchBar customization

但不知道如何在里面这样做:

desired UISearchBar customization

这需要与 iOS 4.3+ 兼容。

最佳答案

只需自定义文本字段本身。

我只是这样做,它对我来说很好(iOS 7)。

UITextField *txfSearchField = [_searchBar valueForKey:@"_searchField"];
txfSearchField.backgroundColor = [UIColor redColor];

这样您就不需要创建图像、调整大小等...

关于ios - 如何在 iOS 上更改 UISearchBar 组件的内部背景颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13817330/

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