我想更改 UINavigationBar标题的颜色和字体。如何使用代码或使用界面构建器执行此操作?这可能是一个简单的,但我是xcode的新手。谢谢你的帮助。
答案 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];