Xcode UINavigationBar文本字体和颜色

时间:2013-04-18 05:47:35

标签: ios xcode fonts colors uinavigationbar

我想更改 UINavigationBar标题颜色字体。如何使用代码或使用界面构建器执行此操作?这可能是一个简单的,但我是xcode的新手。谢谢你的帮助。

1 个答案:

答案 0 :(得分:0)

对于编码部分,您可以做的是使用标签启动标题视图。

UILabel *myLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 10, 40)];
[myLabel setFont:[UIFont fontWithName:@"Arial" size:12]];
[myLabel setTextColor:[UIColor whiteColor]];
[myLabel setText:@"My text here"];
[**your navigation bar**.topItem setTitleView:myLabel];