美文网首页
改变SearchBar的字体颜色、大小以及游标颜色

改变SearchBar的字体颜色、大小以及游标颜色

作者: jaychowbin | 来源:发表于2016-04-13 10:07 被阅读163次

    找到一种方法,从SearchBar内部的TextFiled进行改变,代码如下:

    - (void)setSearchBarTextfiled:(UISearchBar *)searchBar{
        for (UIView *view in searchBar.subviews){
            for (id subview in view.subviews){
                if ( [subview isKindOfClass:[UITextField class]] ){
                    [(UITextField *)subview setTintColor:[UIColor redColor]]; //游标
                    [(UITextField *)subview setFont:[MyFont fontSize:18]];
                    [(UITextField *)subview setTextColor:[UIColor blackColor]];
                    return;
                }
            }
        }
    }
    

    用searchBar对象调用就好了

    相关文章

      网友评论

          本文标题:改变SearchBar的字体颜色、大小以及游标颜色

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