ナビゲーションバーの背景を黒に設定し、その中のすべての色を白に設定したい。
だから、私はこのコードを使用しました:
[[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]];
しかし、戻るボタンのテキストの色、矢印、バーのボタンは、デフォルトの青色のままです。
下の画像のようにそれらの色を変更するにはどうすればよいですか?