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

清华大佬耗费三个月吐血整理的几百G的资源,免费分享!....>>>

    //按钮的颜色
    [self.navigationBar setTintColor:[UIColor whiteColor]];

    //标题颜色
   [self.navigationBar setTitleTextAttributes:@{NSForegroundColorAttributeName:[UIColor whiteColor],NSFontAttributeName:[UIFont systemFontOfSize:16]}];

    //背景颜色
    self.navigationBar.barTintColor = [UIcolor red];