iOS开发-设置导航栏title字体颜色

Posted sunshine-zzz

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS开发-设置导航栏title字体颜色相关的知识,希望对你有一定的参考价值。

      设置导航栏title字体颜色     ZYYHomeViewController*homeVC = [[ZYYHomeViewControlleralloc]init];
   
UINavigationController *homeNaVC = [[UINavigationControlleralloc]initWithRootViewController:homeVC];
//    homeNaVC.navigationBar.barTintColor = [UIColor redColor];
    homeNaVC.
tabBarItem= [[UITabBarItemalloc]initWithTitle:@"首页"image:[UIImageimageNamed:@""]tag:1000];
    
// 设置导航栏颜色
    homeNaVC.navigationBar.barTintColor= [UIColorcolorWithRed:231/255.0green:53/255.0blue:62/255.0alpha:0.3];      UIColor* color = [UIColorwhiteColor];
   
//这里我们设置的是颜色,还可以设置shadow等,具体可以参见api
   
NSDictionary* homeDic =[NSDictionarydictionaryWithObject:colorforKey:UITextAttributeTextColor];
   
//大功告成
    homeNaVC.
navigationBar.titleTextAttributes= homeDic;

以上是关于iOS开发-设置导航栏title字体颜色的主要内容,如果未能解决你的问题,请参考以下文章

iOS中设置导航栏标题的字体颜色和大小

IOS设置导航栏字体大小及颜色

转iOS中设置导航栏标题的字体颜色和大小

ios7以上自定义导航栏标题的字体大小及颜色的方法

iOS之 状态栏字体颜色的设置

iOS更改导航栏标题字体和颜色