美文网首页
去掉UISearchBar 默认的灰色背景

去掉UISearchBar 默认的灰色背景

作者: 明年的我会感谢今年的我 | 来源:发表于2022-05-25 11:38 被阅读0次

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

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

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


    默认.png

    需要的效果为


    白色背景.png

    相关文章

      网友评论

          本文标题:去掉UISearchBar 默认的灰色背景

          本文链接:https://www.haomeiwen.com/subject/nveeprtx.html