我试图为搜索栏的背景着色,但是当我按下搜索时它不起作用..
- (void)searchBarSearchButtonClicked:(UISearchBar *)searchBar
{
searchBar.backgroundColor = [UIColor redColor];
}
答案 0 :(得分:10)
是否要更改搜索栏的背景或搜索栏的色调? 喜欢这个 - >
如果是,则使用此行代码
searchBar.tintColor = [UIColor blackColor];
答案 1 :(得分:1)
change tintColor of searchBar
searchBar.tintColor = [UIColor redColor];