码迷,mamicode.com
首页 > 其他好文 > 详细

去掉UISearchBar自带的的边框背景

时间:2015-05-15 15:36:07      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:uisearchbar边框   uisearchbar背景   

去掉UISearchBar自带的的边框背景 ,分为ios7后和ios7前的解决方案,代码如下:

        UISearchBar* searchbar = [[UISearchBar alloc]initWithFrame:CGRectMake(5, 0, 310, 50)];

        searchbar.tag = 1000;

        searchbar.delegate = self;

        [cell addSubview:searchbar];

        for (UIView *view in searchbar.subviews) {

            // for before iOS7.0

            if ([view isKindOfClass:NSClassFromString(@"UISearchBarBackground")]) {

                [view removeFromSuperview];

                break;

            }

            // for later iOS7.0(include)

            if ([view isKindOfClass:NSClassFromString(@"UIView")] && view.subviews.count > 0) {

                [[view.subviews objectAtIndex:0] removeFromSuperview];

                break;

            }

        }

去掉UISearchBar自带的的边框背景

标签:uisearchbar边框   uisearchbar背景   

原文地址:http://blog.csdn.net/intheair100/article/details/45744475

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!