本文介绍了模态视图中的导航视图的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我是模态视图的新手,似乎无法在模态视图中显示导航视图。
I am new to modal views and cant seem to get a navigation view display in a modal view.
如何在模态视图中构建导航视图?
How do I build a navigation view in the modal view?
推荐答案
正如sha所说:
MyViewController *myViewController = [[MyViewController alloc] init];
UINavigationController *navController = [[UINavigationController alloc] initWithRootViewController:myViewController];
[[self navigationController] presentModalViewController:navController animated:YES];
这篇关于模态视图中的导航视图的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!