iPhone开发-切换视图

发布于 2024-08-20 21:11:57 字数 198 浏览 13 评论 0原文

因此,我以编程方式创建了一个使用导航控制器的 tabbarcontroller(基于 Jeff Fithian 的

我采用了程序化方法,因为这是启动有效项目的唯一方法,但现在我真的陷入了困境。

有什么想法吗?

我确信某个地方有一个教程可以解决这个问题,但是经过四天的寻找(我正处于中大西洋“雪”紧急情况中)我什么也没发现......

So I have programatically created a tabbarcontroller that uses navigation controllers(based on Jeff Fithian's example). Now I need to push an additional page onto the navbarcontroller (ie I have clicked on an item on the list) but I can't quite figured out how to get a reference to the navigation controller of the current view from it's view controller.

I went with the programmatic approach, because it was the only way to start out the project that worked, but now I am getting really bogged down.

Any ideas?

I am sure there is a tutorial somewhere that addresses this, but after four days of looking (I am in the middle of the MidAtlantic "snow" emergency) I have found nothing...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

爱情眠于流年 2024-08-27 21:11:57

您可以使用 .navigationController 属性从视图控制器中找到导航控制器。

[my_view_ctrler.navigationController pushViewController:other_view_ctrler animated:YES];

You can find the navigation controller from the view controller with the .navigationController property.

[my_view_ctrler.navigationController pushViewController:other_view_ctrler animated:YES];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文