简体   繁体   中英

iOS 7 UISearchBar customization when it is first responder

I'm trying add background image on my search bar when it going to navigation bar. But if I'm writing something like this:

self.searchDisplayController.searchBar.barTintColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"searchBarBG2.png"]];

there is always black color and it look bad at status bar: 在此输入图像描述

The size of my image is 320:64

For iOS7, try doing

self.searchDisplayController.searchBar.searchBarStyle = UISearchBarStyleMinimal;

[self.searchDisplayController.searchBar setBackgroundImage:[self imageWithColor:[UIColor yourColor]] forBarPosition:0 barMetrics:UIBarMetricsDefault];

Try this:

searchBar.backgroundColor = [UIColor clearColor];
searchBar.backgroundImage = [UIImage imageNamed:@ searchBarBG2.png"];

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM