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