怎样使UISearchBar背景透明
在使用UISearchBar时,将背景色设定为clearColor,或者将translucent设为YES,都不能使背景透明,经过一番研究,发现了一种超级简单和实用的方法:
1 | [[searchbar.subviews objectAtIndex:0]removeFromSuperview]; |
背景完全消除了,只剩下搜索框本身了。
我的电话: 18671682672 我的 QQ: 1287976580 ios开发QQ群:79190809
在使用UISearchBar时,将背景色设定为clearColor,或者将translucent设为YES,都不能使背景透明,经过一番研究,发现了一种超级简单和实用的方法:
1 | [[searchbar.subviews objectAtIndex:0]removeFromSuperview]; |
背景完全消除了,只剩下搜索框本身了。