您的位置:首页 > 产品设计 > UI/UE

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

2014-06-18 10:22 330 查看
转自:http://www.2cto.com/kf/201311/260409.html

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


[self.navigationController.navigationBarsetTitleTextAttributes:[NSDictionarydictionaryWithObjectsAndKeys:
[UIColorcolorWithRed:0green:0.7blue:0.8alpha:1],UITextAttributeTextColor,
[UIColorcolorWithRed:0green:0.7blue:0.8alpha:1],UITextAttributeTextShadowColor,
[NSValuevalueWithUIOffset:UIOffsetMake(0,0)],UITextAttributeTextShadowOffset,
[UIFontfontWithName:@"Arial-Bold"size:0.0],UITextAttributeFont,
nil]];



其中UITextAttributeTextColor和UITextAttributeFont属性是文字颜色和字体。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: