标签:
发现我们的应用 iOS7.1 编译后 UISearchBar 背景色是黑色
下图为正常效果(凹进去的搜索框并不是 UISearchBar 背景图片,而是一个 UIButton )
效果是点击后隐藏 UIButton 展开 UISearchBar
iOS7.1 编译后的效果
尝试修改barTintColor 属性
searchBar.barTintColor = [UIColor clearColor]; 修改为
searchBar.barTintColor = [R.i pinkColor]; 效果
有两条黑线,非常难看。为了去掉这二条线试过很多方法。
通过以上代码可以去掉黑线,不过UISearchBarIcon, cancleButton,字体颜色等都需要改动。
继续研究并找到了最终解决方法
转自:http://blog.csdn.net/jekkihun/article/details/21244167
标签:
原文地址:http://www.cnblogs.com/huangzs/p/4697077.html