我正在尝试从另一个 UIViewController 以模态方式呈现 UINavigationController 的根视图。但是,当我单击触发模态转换的按钮时,我会看到一个空白屏幕,其中包含一个空的 UINavBar。我怀疑我没有将视图附加到 UINavigationController,但我不确定如何执行此操作。
这是我应该触发模态转换的目标操作方法的代码。此代码包含在 modal Presenter 的实现文件中:
//Instansiate the root UIViewController
OzSoundSelectionViewController *selectionView = [[OzSoundSelectionViewController alloc]initWithNibName:@"OzSoundSelectionViewController" bundle:nil];
//Instansiate the UINavigatonController and set the root view controller
navigationController = [[UINavigationController alloc]initWithRootViewController:selectionView];
//Set up the modal transition
[selectionView setModalTransitionStyle:UIModalTransitionStyleFlipHorizontal];
[self presentModalViewController:navigationController animated:YES];