去掉UISearchBar 默认的灰色背景

2022-05-25  本文已影响0人  明年的我会感谢今年的我

简单的替换掉 image 就好了
这里UIImage 的高度设置和searchBar 一样高,宽度就随意了

 UIImage* img =[UIImage imageWithColor:UIColor.whiteColor size:CGSizeMake(100, 40)];
 [_searchBar setSearchFieldBackgroundImage:img forState:UIControlStateNormal];

默认的搜索控件有灰色背景


默认.png

需要的效果为


白色背景.png
上一篇下一篇

猜你喜欢

热点阅读