In my iOS5 iPhone application, i\'m setting the tint color of search bar using following code:
searchBar.tintColor = UIColorMake(@\"#EFEFEF\");
Since iOS5 you can edit the Navigationbar, Toolbar, Tabbar and some more with this code...
NSDictionary *textTitleOptions = [NSDictionary dictionaryWithObjectsAndKeys:
[UIColor darkGrayColor],
UITextAttributeTextColor,
[UIColor whiteColor],
UITextAttributeTextShadowColor, nil];
[[UINavigationBar appearance] setTitleTextAttributes:textTitleOptions];
I haven´t tested it with a searchbar, but it should work similar.