如何在 iPhone 中从一个 UITabbarview 控制器切换到另一个 UITabbarViewController?
我有一个 UITabbarViewController,其中有 3 个选项卡栏项目和一个导航栏。当我按下选项卡栏项目的第一个项目时,视图中将会有一个按钮。
现在我的问题是,当我按下按钮时,它将转到另一个 tabbarview 控制器,该控制器也有 3 个选项卡栏项目。我怎样才能做到这一点?
UITabbarViewController[带导航栏]--->tabaritem [1] + tabaritem [2] + tabaritem [3]
tabaritem [1] 视图控制器正在使用一个按钮,当我按下按钮时,另一个 UITabbarcontroller 将显示在屏幕上。
UITabbarcontroller[2] [带导航栏]--->tabaritem [1] + tabaritem [2] + tabaritem [3]
我是 iPhone 应用程序开发新手。
另一件事是,我无法对两个 tabbarcontroller 使用表视图,因为我的第一个 tabbar 的第一个 tabbar 项目正在使用登录页面,因此当用户能够登录时,他将看到第二个 tabbarviewcontroller。
I have an UITabbarViewController with 3 tabbar items with a navigationbar. When I will press my first item of tabbar item there will be a button at the view.
Now my question is when I will press the button, then it will go to the another tabbarview controller which have also 3 tabbar items. How can I do that?
UITabbarViewController[with navigation bar]--->tabaritem [1] + tabaritem [2] + tabaritem [3]
tabaritem [1] viewcontroller is taking a button when I will press button the another UITabbarcontroller will be shown at the screen.
UITabbarcontroller[2] [with navigation bar]--->tabaritem [1] + tabaritem [2] + tabaritem [3]
I am new to iPhone application development.
One more thing is that I can't use table view for two tabbarcontroller because my first tabbar item of first tabbar is taking a login page so when user will able to log in then he will see second tabbarviewcontroller.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
与其更换整个控制器,为什么不为每种模式删除并添加选项卡栏项目呢?当您处于第一种模式时,显示选项卡栏项目 1,2 和 3。如果有人点击其中一个,则删除所有这些项目,并添加项目 4,5 和 6。使用项目上的标签来跟踪它们。
Instead of swapping out the whole controller, why not just remove and add tab bar items for each of your modes? When your in your first mode, show tab bar items 1,2 and 3. If someone hits one, then remove all those items, and add items 4,5 and 6. Use the tag on the items to keep track of them.
根据苹果的观点,做到这一点的唯一方法是在模式中显示一个选项卡栏。
看起来您正在使用第一个 Tabbarcontroller 作为登录控制器。在这种情况下,您将把它作为模态视图,而不是其他(普通)视图控制器。在应用程序启动时,您加载主选项卡控制器。
然后,您检查用户是否已登录,如果未登录,则显示模型日志记录控制器(又是选项卡栏控制器)。
用户成功登录后,您只需关闭模态框,瞧,您就可以看到“主”选项卡控制器。
[编辑:] 这是(伪)代码中的一个简短示例:
MainViewController.m:
在 LoginController 中
这显然假设您在 appdelegate 中引用了视图控制器。
The only way to do this, according to apples viewpoints, is to show one of the tab bars in a modal.
It seems like you're using the first Tabbarcontroller as a Login controller. In that case, you would have this as a Modalview over you're other (normal) Viewcontroller. On Application Start, you load the main tab controller.
You then check if the user is logged in and show the Model Logging Controller (which is a Tabbar controller again) if he isn't.
Once the user has successfully logged in, you just dismiss the Modal, and voila, you got the "main" tab controller visible.
[edit:] here's a short example in (Pseuod) code:
MainViewController.m:
in the LoginController
This obviously assumes that you have references to your view controllers in the appdelegate.