在ios7.1中,当我将UISearchbar背景设置为透明颜色时,它的背景是黑色的。我需要得到clearColor的背景资料。
[searchBar setBarTintColor:[UIColor clearColor]];
[searchBar setBackgroundColor:[UIColor clearColor]];
[searchBar setTranslucent:YES];在7.1版本中,我是这样的,

但我需要像这样,

感谢帮手,
发布于 2014-05-03 05:04:05
看看这个问题及其答案:iOS 7.1 UISearchBar gray view
我也有同样的问题,这对我很有效:
searchBar.backgroundImage = [[UIImage alloc] init];https://stackoverflow.com/questions/23292497
复制相似问题