iOS7 でナビゲーション コントローラーの navigationBar をカスタマイズしようとしていますが、タイトルの色が変わりません。私は次のことをしています:
[navigationController.navigationBar setBarTintColor:[UIColor colorWithRed:46.0f/256.0f green:46.0f/256.0f blue:46.0f/256.0f alpha:1]];
[navigationController.navigationBar setTranslucent:NO];
[navigationController.navigationBar setTitleTextAttributes:@{[UIColor whiteColor]:UITextAttributeTextColor}];
[self presentViewController:navigationController animated:YES completion:nil];
navigationBar の半透明がオフになり、暗くなりますが、タイトルも暗いままです。また、カスタム ラベルを作成してタイトル ビューとして設定しようとしましたが、うまくいきませんでした。
タイトルの色を変更するにはどうすればよいですか?