0

我正在尝试从另一个 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];
4

1 回答 1

0

我解决了这个问题。

我在 rootViewController 中声明了一个名为 navigationController 的属性。这覆盖了作为 UIViewController 父类的一部分的属性 navigationController。这把一切都搞砸了。

于 2012-10-21T04:07:31.943 回答