这会导致应用崩溃:
[[UINavigationBar appearance] setTitleColor:[UIColor darkGrayColor] forState:UIControlStateNormal];
有没有办法使用外观来做到这一点?
答案 0 :(得分:66)
这有效:
NSDictionary *textTitleOptions = [NSDictionary dictionaryWithObjectsAndKeys:[UIColor darkGrayColor], UITextAttributeTextColor, [UIColor whiteColor], UITextAttributeTextShadowColor, nil];
[[UINavigationBar appearance] setTitleTextAttributes:textTitleOptions];
答案 1 :(得分:4)
以下是Swift中如何执行此操作的示例:
UINavigationBar.appearance().titleTextAttributes =
[NSFontAttributeName:UIFont(name:"Exo2-Bold", size: 18) as! AnyObject,
NSForegroundColorAttributeName:UIColor.whiteColor()]
答案 2 :(得分:3)
在UINavigationBar没有标题或状态之前崩溃应用程序......那些是UIButton方法
你需要
[[UINavigationBar appearance] setTintColor:[UIColor darkGrayColor]];
答案 3 :(得分:2)
@RyJ答案很棒,对我有用。我想知道Ray Wenderlich网站上有一个很好的教程,标题是(借口双关语):
User Interface Customization in iOS 6
请参阅自定义UINavigationBar
部分这是导航栏标题的代码段,全局更改:
// Customize the title text for *all* UINavigationBars
[[UINavigationBar appearance] setTitleTextAttributes:
[NSDictionary dictionaryWithObjectsAndKeys:
[UIColor colorWithRed:255.0/255.0 green:255.0/255.0 blue:255.0/255.0 alpha:1.0],
UITextAttributeTextColor,
[UIColor colorWithRed:0.0 green:0.0 blue:0.0 alpha:0.8],
UITextAttributeTextShadowColor,
[NSValue valueWithUIOffset:UIOffsetMake(0, -1)],
UITextAttributeTextShadowOffset,
[UIFont fontWithName:@"Arial-Bold" size:0.0],
UITextAttributeFont,
nil]];
另一个小问题是标题栏上似乎有一个默认阴影,所以为了摆脱它,你不能只删除属性。相反,你必须设置一个阴影偏移:
UITextAttributeTextShadowOffset : [NSValue valueWithUIOffset:UIOffsetMake(0, 0)]
答案 4 :(得分:0)
我使用以下代码更改标题栏的颜色。
NSShadow *shadow = [[NSShadow alloc] init];
shadow.shadowColor = [UIColor blackColor];
shadow.shadowOffset = CGSizeMake(1, 0);
NSDictionary *titleTextAttributes = @{NSForegroundColorAttributeName:[UIColor whiteColor],
NSShadowAttributeName:shadow};
[[UINavigationBar appearance] setTitleTextAttributes:titleTextAttributes];
答案 5 :(得分:0)
使用实际运行的现代语法和代码,这是如何对UINavigationBar
标题文本进行全局样式设置:
NSShadow *navigationBarTitleShadow = [[NSShadow alloc] init];
navigationBarTitleShadow.shadowColor = [UIColor colorWithWhite:0.5
alpha:0.5];
navigationBarTitleShadow.shadowOffset = CGSizeMake(2.0, 2.0);
[[UINavigationBar appearance] setTitleTextAttributes:@{ NSForegroundColorAttributeName : [UIColor blackColor],
NSFontAttributeName : [UIFont fontWithName:@"Arial-BoldMT"
size:30.0],
NSShadowAttributeName : navigationBarTitleShadow }];
注意:NSShadow
的{{1}}属性不受尊重。
注意:阴影是如此iOS 6.不要使用它们。