Objective-c – How to change background color of UISearchBar in iOS7

background-colorios7objective cuisearchbaruisearchdisplaycontroller

How to change background color of UISearchBar in iOS7?

enter image description here

not gray, I want to change color like my uinavigationbar

if I Use this code, that's what comes out

searchBar.backgroundColor = [UIColor redColor];

enter image description here

That is not red color!!!
This exact same situation as in background color of navigation bar.

Best Answer

Need to use:

searchBar.barTintColor = [UIColor redColor];

enter image description here

All thanks!