美文网首页
UISearchController修改搜索框颜色

UISearchController修改搜索框颜色

作者: Freedom_fly | 来源:发表于2017-04-09 17:29 被阅读257次

    创建searchcontroller的方法就不多说了,说一下修改对应搜索框的颜色:

    self.memberSearchVC.searchBar.barTintColor = [UIColor whiteColor]; // searchBar整个的背景色
        for (UIView *subview in [[self.memberSearchVC.searchBar.subviews lastObject] subviews]) {
            
            if ([subview isKindOfClass:[UITextField class]]) {
                
                UITextField *textField = (UITextField*)subview;
                // 搜索框里面的颜色
                textField.backgroundColor = [UIColor colorWithRed:247/255.0 green:247/255.0 blue:247/255.0 alpha:1/1.0];
                
            }
        }
    

    相关文章

      网友评论

          本文标题:UISearchController修改搜索框颜色

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