UINavigationController改变UINavigationBar导航条标题颜色跟字体

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了UINavigationController改变UINavigationBar导航条标题颜色跟字体相关的知识,希望对你有一定的参考价值。

UINavigationController改变UINavigationBar导航条标题颜色跟字体

UINavigationController改变UINavigationBar导航条标题颜色和字体

ios 5 以后 UINavigationController 可以 改变UINavigationBar导航条标题颜色和字体

 

 

[self.navigationController.navigationBar setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:

                                                                     [UIColor colorWithRed:0 green:0.7 blue:0.8 alpha:1], UITextAttributeTextColor,

                                                                     [UIColor colorWithRed:0 green:0.7 blue:0.8 alpha:1], UITextAttributeTextShadowColor,

                                                                     [NSValue valueWithUIOffset:UIOffsetMake(0, 0)], UITextAttributeTextShadowOffset,

                                                                     [UIFont fontWithName:@"Arial-Bold" size:0.0], UITextAttributeFont,

                                                                     nil]];

    

 

其中 UITextAttributeTextColor和UITextAttributeFont 属性是文字颜色和字体

以上是关于UINavigationController改变UINavigationBar导航条标题颜色跟字体的主要内容,如果未能解决你的问题,请参考以下文章

设置 UINavigationController 框架不会改变外观

从 UINavigationController 弹出视图会改变设备方向

UINavigationController barstyle 属性改变布局

UINavigationController

UINavigationController 不会 pushViewController

单击选项卡时返回 UINavigationController 堆栈的顶部?