ios uinavigationcontroller 进入 uiviewcontroller
我有这个问题: 我的主窗口包含一个选项卡栏控制器,用于管理我的应用程序的一些视图: 例如,我在栏上有 3 个按钮和 3 个 UIViewController,每个按钮一个,一切正常。
现在我希望做到这一点:在第一个视图控制器中,我希望添加一个导航控制器来管理一些数据...如果我将导航控制器添加到 uiviewcontroller 中什么也不会发生...我该怎么做?
谢谢
I have this problem:
my main window contains a Tab Bar Controller that manages some views of my app:
I have for example 3 buttons on the bar and 3 UIViewController, one for each button and everything works fine.
Now I wish make this: in the firstViewController, I wish add a navigation controller to manage some data... If I add the navigationcontroller into the uiviewcontroller nothing happens... how can I do for this??
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我明白你在问什么,那么你只是以错误的方式做事。
目前,您的结构如下:
UITabBarController -> UIViewController-> UINavigationController
应该是这样的:
UITabBarController -> UINavigationController-> UI视图控制器
If I understand what you're asking, you're just doing it the wrong way round.
Currently, your structure goes:
UITabBarController -> UIViewController -> UINavigationController
It should be like this:
UITabBarController -> UINavigationController -> UIViewController