UISearchBar盒子颜色

时间:2014-09-15 11:40:00

标签: ios ios7 colors searchbar

我有一个搜索栏,旁边我想要一个与搜索栏中的背景颜色相同的按钮。有谁知道这种颜色?

enter image description here

2 个答案:

答案 0 :(得分:0)

我认为#A4A4A4 或者您可以在photoshop中尝试吸管工具

答案 1 :(得分:0)

只需自定义文本字段。

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

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

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

不使用私有API&#39>:

for (UIView* subview in [[self.searchBar.subviews lastObject] subviews]) {
    if ([subview isKindOfClass:[UITextField class]]) {
        UITextField *textField = (UITextField*)subview;
        [textField setBackgroundColor:[UIColor redColor]];
    }
}