将标签栏应用程序与导航控制器一起使用
我想将标签栏应用程序与 UINavigationController
一起使用。 我按照此视频教程进行操作。它看起来不错而且简单,但我是 Objective-C 的新手。
当我执行视频中 2:50 处显示的操作时,我得到以下结果: http: //img4.hostingpics.net/pics/761392Capturede769cran20110515a768024124.png 8024130.png
另一件事视频中他为一件物品做了一个例子。如果我想在导航栏中显示两个项目怎么办?为每个项目设置单独的导航控制器是否正确?
I want to use a Tab Bar App with a UINavigationController
.
I followed this video tutorial. It looked nice and easy, but I am new to Objective-C.
When I do the what is shown at 2:50 in the video, I get these results: http://img4.hostingpics.net/pics/761392Capturede769cran20110515a768024124.png
http://img4.hostingpics.net/pics/461473Capturede769cran20110515a768024130.png
The other thing in the video is he made an example for one item. What if I want two items in the navigation bar? Is it correct to have a separate navigation controller for each item?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果我理解正确的话,您会问如果您有一个基于选项卡栏的用户界面,并且每个选项卡中都可以进行导航,那么您是否应该在每个选项卡下有一个 UINavigationController 。
是的。
If I understand correctly, you're asking whether if you have a tab-bar-based UI with navigation possible in each tab, you should have a UINavigationController under each tab.
Yes.
为每个选项卡创建一个单独的 UINavigationController 是正确的且必需的。
It is correct and required that you make a separate UINavigationController for each tab.