美文网首页
iOS 去掉UISearchBar 的上下两条线

iOS 去掉UISearchBar 的上下两条线

作者: 路边的风景呢 | 来源:发表于2018-11-27 17:25 被阅读12次

    我用的是searchbar  并且在页面上直接显示搜索出来的答案,把searchbar的背景色换掉后会有两条线 

    UIImageView *barImageView = [[[_XJSearchBar.subviews firstObject] subviews] firstObject];

        barImageView.layer.borderColor = [UIColor colorWithRed:245.0/255.0 green:245.0/255.0 blue:245.0/255.0 alpha:1.0].CGColor;

        barImageView.layer.borderWidth=1;

    把这个颜色换成你想要的颜色就OK

    相关文章

      网友评论

          本文标题:iOS 去掉UISearchBar 的上下两条线

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