How to change background color of UISearchBar in iOS7

后端 未结 5 1376
醉梦人生
醉梦人生 2020-12-12 19:50

How to change background color of UISearchBar in iOS7?

\"enter

not gray, I wan

5条回答
  •  长情又很酷
    2020-12-12 20:15

    If the above solutions don't seem working then make sure that you've set the search bar style to Minimal.

    [self.searchDisplayController.searchBar setSearchBarStyle:UISearchBarStyleMinimal];
    

    And for simple searchBar

    [self.searchBar setSearchBarStyle:UISearchBarStyleMinimal];
    

    SearchBar Style can also be set from interface builder to Minimal.

提交回复
热议问题