Colour changed in iOS7.1, how to change searchBar colour?

后端 未结 3 1683
[愿得一人]
[愿得一人] 2020-12-29 16:51

On iOS7.0.3 - 7.0.6, my searchBar colour is Gold/yellow colour like this: \"enter

But

3条回答
  •  死守一世寂寞
    2020-12-29 17:34

    Try this:

    if(IOS_7)
    {
    self.searchBar.searchBarStyle = UISearchBarStyleMinimal;
    self.searchBar.backgroundImage = [UIImage imageWithColor:[UIColor redColor] cornerRadius:5.0f];
    }
    

    Hopefully this will help you.

提交回复
热议问题