UISearchBar barTintColor没有隐藏在iOS 7.1中

时间:2014-05-19 10:22:57

标签: ios objective-c ios7 uisearchbar ios7.1

在我的应用中,我在自定义UISearchBar中使用UIView

以下是显示UISearchBar

的代码
searchBar = [[UISearchBar alloc] initWithFrame:CGRectMake(50, 135, 230, 32)];
searchBar.barTintColor = [UIColor clearColor];
searchBar.placeholder = @"Search";
[self addSubview:searchBar];

iOS 7.0.3 中,未显示bartint颜色,

enter image description here

但是在 iOS 7.1 中,bartint颜色没有隐藏。

enter image description here

1 个答案:

答案 0 :(得分:10)

看来这就是诀窍:

[searchBar setBackgroundImage:[UIImage new]];