iOS 6 用のカスタム UINavigationBar 画像背景を実装しようとしていますが、うまくいきません。表示されるのは、Apple の通常のものだけです (戻るボタンはありません)。viewDidLoad 内で次のコードを試しました(一度に1つ):
[[UINavigationBar appearance] setBackgroundImage:myImage forBarMetrics:UIBarMetricsDefault];
[self.navigationController.navigationBar setBackgroundImage:myImage forBarMetrics:UIBarMetricsDefault];
私は次の方法で望ましいビューを提示しています:
optionViewController *choose= [[optionViewController alloc] initWithNibName:@"optionViewController" bundle:nil];
UINavigationController *aNavController = [[UINavigationController alloc] initWithRootViewController:choose];
[self presentViewController: aNavController animated:YES completion:nil];
どんな助けでも大歓迎です。ありがとう!