美文网首页
iOS 改变导航条的 导航条的按钮颜色 标题颜色 字体大小

iOS 改变导航条的 导航条的按钮颜色 标题颜色 字体大小

作者: GrayMantis | 来源:发表于2017-06-25 00:55 被阅读0次
    //按钮的颜色
     [self.navigationBar setTintColor:[UIColor whiteColor]];
     
     //标题颜色
    [self.navigationBar setTitleTextAttributes:@{NSForegroundColorAttributeName:[UIColor whiteColor],NSFontAttributeName:[UIFont systemFontOfSize:16]}];
     
     //背景颜色
     self.navigationBar.barTintColor = [UIcolor redColor];
    
    

    相关文章

      网友评论

          本文标题:iOS 改变导航条的 导航条的按钮颜色 标题颜色 字体大小

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