ios uiview csdn 如何去除uisearchbar默认的灰色背景颜色
1个回答
展开全部
在使用那个UISearchBar的时候我个人觉得那个灰色背景框很丑,,。。所以我就想把那个给清楚掉,结果设置背景为无色,什么什么的都设置完了还是不行。然后我去网上看了一下很多人都写了那个遍历subviews这个数组。。。。可是呢还是一样的效果。然后我就各种的乱试,得出了以下两种解决的方法。
1.设置你的barTinColor和你的背景相同就看不出来那个灰色框了哈哈哈哈,这个方法就是拿来骗人的。因为肉眼看不出来所以这是一个障眼法。不建议大家使用哈。当然你要是觉得其他方法麻烦呢用这个还是可以的啦。
2.至于这种呢就取巧于那个subviews的方法了。这个方法跟我们的版本有关的,所以最先得判断版本了。iOS7.0以上有两层的subviews,以下有一层。刚刚好7.0呢就没有你可以直接设置背景颜色和那个barTinColor味无色就好了。接下来看代码
也是两种写法。
(1)
float version = [[[UIDevice currentDevice] systemVersion] floatValue];
if (version == 7.0) {
_searchBar.backgroundColor = [UIColor clearColor];
_searchBar.barTintColor = [UIColor clearColor];
}else{
for(int i = 0 ;i < _searchBar.subviews.count;i++){
UIView * backView = _searchBar.subviews[i];
if ([backView isKindOfClass:NSClassFromString(@"UISearchBarBackground")] == YES) {
[backView removeFromSuperview];
[_searchBar setBackgroundColor:[UIColor clearColor]];
break;
}else{
NSArray * arr = _searchBar.subviews[i].subviews;
for(int j = 0;j<arr.count;j++ ){
UIView * barView = arr[i];
if ([barView isKindOfClass:NSClassFromString(@"UISearchBarBackground")] == YES) {
[barView removeFromSuperview];
[_searchBar setBackgroundColor:[UIColor clearColor]];
break;
}
}
}
}
}
(2)
float version = [[[UIDevice currentDevice] systemVersion] floatValue];
if ([_searchBar respondsToSelector:@selector(barTintColor)]) {
float iosversion7_1 = 7.1;
if (version >= iosversion7_1) {
[[[[_searchBar.subviews objectAtIndex:0] subviews] objectAtIndex:0] removeFromSuperview];
[_searchBar setBackgroundColor:[UIColor clearColor]];
}
else { //iOS7.0
[_searchBar setBarTintColor:[UIColor clearColor]];
[_searchBar setBackgroundColor:[UIColor clearColor]];
}
}
else {
//iOS7.0以下
[[_searchBar.subviews objectAtIndex:0] removeFromSuperview];
[_searchBar setBackgroundColor:[UIColor clearColor]];
}
1.设置你的barTinColor和你的背景相同就看不出来那个灰色框了哈哈哈哈,这个方法就是拿来骗人的。因为肉眼看不出来所以这是一个障眼法。不建议大家使用哈。当然你要是觉得其他方法麻烦呢用这个还是可以的啦。
2.至于这种呢就取巧于那个subviews的方法了。这个方法跟我们的版本有关的,所以最先得判断版本了。iOS7.0以上有两层的subviews,以下有一层。刚刚好7.0呢就没有你可以直接设置背景颜色和那个barTinColor味无色就好了。接下来看代码
也是两种写法。
(1)
float version = [[[UIDevice currentDevice] systemVersion] floatValue];
if (version == 7.0) {
_searchBar.backgroundColor = [UIColor clearColor];
_searchBar.barTintColor = [UIColor clearColor];
}else{
for(int i = 0 ;i < _searchBar.subviews.count;i++){
UIView * backView = _searchBar.subviews[i];
if ([backView isKindOfClass:NSClassFromString(@"UISearchBarBackground")] == YES) {
[backView removeFromSuperview];
[_searchBar setBackgroundColor:[UIColor clearColor]];
break;
}else{
NSArray * arr = _searchBar.subviews[i].subviews;
for(int j = 0;j<arr.count;j++ ){
UIView * barView = arr[i];
if ([barView isKindOfClass:NSClassFromString(@"UISearchBarBackground")] == YES) {
[barView removeFromSuperview];
[_searchBar setBackgroundColor:[UIColor clearColor]];
break;
}
}
}
}
}
(2)
float version = [[[UIDevice currentDevice] systemVersion] floatValue];
if ([_searchBar respondsToSelector:@selector(barTintColor)]) {
float iosversion7_1 = 7.1;
if (version >= iosversion7_1) {
[[[[_searchBar.subviews objectAtIndex:0] subviews] objectAtIndex:0] removeFromSuperview];
[_searchBar setBackgroundColor:[UIColor clearColor]];
}
else { //iOS7.0
[_searchBar setBarTintColor:[UIColor clearColor]];
[_searchBar setBackgroundColor:[UIColor clearColor]];
}
}
else {
//iOS7.0以下
[[_searchBar.subviews objectAtIndex:0] removeFromSuperview];
[_searchBar setBackgroundColor:[UIColor clearColor]];
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询