我想将导航栏的背景设置为黑色,并将其中的所有颜色设置为白色。
因此,我使用了以下代码:
[[UINavigationBar appearance] setTitleTextAttributes:
[NSDictionary dictionaryWithObjectsAndKeys:
[UIColor whiteColor],
NSForegroundColorAttributeName,
[UIColor whiteColor],
NSForegroundColorAttributeName,
[NSValue valueWithUIOffset:UIOffsetMake(0, -1)],
NSForegroundColorAttributeName,
[UIFont fontWithName:@"Arial-Bold" size:0.0],
NSFontAttributeName,
nil]];
但是后退按钮的文字颜色,箭头和方向键仍为默认蓝色。
如何更改下图所示的颜色?