在我的应用中,我在自定义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颜色,
但是在 iOS 7.1 中,bartint颜色没有隐藏。
答案 0 :(得分:10)
看来这就是诀窍:
[searchBar setBackgroundImage:[UIImage new]];