现在的位置: 首页 > 综合 > 正文

ios7 下设置UISearchBar背景 去除底部线条

2017年12月08日 ⁄ 综合 ⁄ 共 294字 ⁄ 字号 评论关闭

通过设置background image 可以彻底改变UISearchBar 在iOS7下的背景(该方法适用iOS5及其以上)

        self.searchBar.backgroundImage = [UIImage imageNamed:@"back.png"];
</pre><p>iOS6及之前版本下可以采用下面的方法</p><p></p><pre name="code" class="objc">        [[_searchBar.subviews objectAtIndex:0]removeFromSuperview];
        _searchBar.backgroundColor=[UIColor grayColor];

抱歉!评论已关闭.