我是模态视图的新手,似乎无法在模态视图中显示导航视图。
如何在模态视图中构建导航视图?
答案 0 :(得分:4)
您可以将导航控制器用作模态视图控制器。
[parent presentModalViewController:myNavigationController animated:YES];
答案 1 :(得分:4)
如沙所说:
MyViewController *myViewController = [[MyViewController alloc] init];
UINavigationController *navController = [[UINavigationController alloc] initWithRootViewController:myViewController];
[[self navigationController] presentModalViewController:navController animated:YES];
答案 2 :(得分:2)
您创建一个UINavigrationController,然后向其添加UIViewController,然后您使用presentModalViewController