アプリ クラス UINavigationController (NIB を使用) にあり、これを ModalView として開きたいと考えています。
私はそうします:(ColorInfoはまさにこのUINavigationControllerクラスです)
ColorInfo *InfoScreen = [[ColorInfo alloc] initWithNibName:@"ColorInfo" bundle:[NSBundle mainBundle]];
[InfoScreen setModalTransitionStyle:UIModalTransitionStyleCrossDissolve];
[self presentModalViewController:InfoScreen animated:YES];
空の UINavigtionController 要素が表示されます。ModalView で ColorInfo を (UINavigationController として) 開く方法を教えてください。すべての pushViewController メソッドで ColorInfo を完成させてから、ModalView の別の画面で開くことができると思いました。
この効果を得る方法を教えてください。