NavigationBar如何标题字体颜色字体样式

时间:2012-02-05 06:56:52

标签: iphone objective-c ios ios4

据我所知,您可以通过调用SetTitle方法navigationItem来更改导航项的标题,如下所示:

[[ViewController navigationItem] setTitle:@"Hello World"];

但是,我想做更多然后只需更改导航项的文本,我想更改颜色和字体样式。

是否有任何功能可以让您更改导航栏标题的颜色?

2 个答案:

答案 0 :(得分:12)

您只需在viewdidload方法中添加和修改以下代码即可。或者您甚至可以在导航栏上放置图像

if ([[UINavigationBar class]respondsToSelector:@selector(appearance)]) {
    [[UINavigationBar appearance] setBackgroundImage:[UIImage imageNamed:@"image.png"] forBarMetrics:UIBarMetricsDefault];
}

[[UINavigationBar appearance] setTitleTextAttributes:@{
    UITextAttributeTextColor : [UIColor whiteColor],
    UITextAttributeTextShadowColor : [UIColor blackColor],
    UITextAttributeTextShadowOffset : [NSValue valueWithUIOffset:UIOffsetMake(1, 0)],
    UITextAttributeFont : [UIFont fontWithName:@"System" size:25.0]
}];

希望这个帮助

答案 1 :(得分:0)

每个UINavigationController的导航栏都由导航项组成。您可以使用UINavigationItem属性titleView,并返回一个包含您想要的字体大小,颜色,样式等的自定义视图。