1

我试图为搜索栏的背景着色,但是当我推送搜索时它不起作用..

- (void)searchBarSearchButtonClicked:(UISearchBar *)searchBar
{
searchBar.backgroundColor = [UIColor redColor];

}
4

2 回答 2

10

你想改变搜索栏的背景还是搜索栏的色调?像这样-> 在此处输入图像描述

如果是,则使用这行代码

    searchBar.tintColor = [UIColor blackColor];
于 2012-06-01T11:00:40.750 回答
1
change tintColor of searchBar

searchBar.tintColor = [UIColor redColor];
于 2012-06-01T11:00:56.643 回答