我的应用程序类 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 中的另一个屏幕上打开它。
告诉我如何达到这个效果。