UINavigationController
で を使用しているアプリケーションを開発していますAppDelegate
。起動時に、.で初期化しますUIViewController
。
self.navigationController = [[UINavigationController alloc] initWithRootViewController:viewController];
[self.navigationController setNavigationBarHidden:YES];
[window addSubview:self.navigationController.view]; like this.
ただし、 other に other を追加したいUIViewControllers
のですが、 other を使用するたびにUINavigatioNController
を再初期化するのは良い習慣ではないことを知っています。これを行う通常の方法を教えてください。UINavigationController
UIViewControllers