IOS改变导航条上标题的属性(包括字体,颜色,等)

来源:互联网 发布:淘宝开放平台 top 编辑:程序博客网 时间:2024/06/05 21:05

代码如下

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

     [UIColor whiteColor], UITextAttributeTextColor,[UIColor clearColor],UITextAttributeTextShadowColor,[UIFont boldSystemFontOfSize:20],UITextAttributeFont,nil]];

0 0