关于iphone中的tabBar控制器
嗨朋友,我有问题,是否可以在同一个应用程序中使用两个不同的选项卡栏类。 这意味着我的应用程序中有两个选项卡栏控制器。 第一个是 newtabcontroller.h &新标签控制器.m 第二个是oldtabcontroller.h &旧表控制器.m 可以在应用程序中使用两个不同的选项卡控制器。 谢谢
Hi friends ,I have question ,Is this possible to use two different tabbar class in the same app.
It mean I have Two tabbar controller in my app.
Like 1st is newtabcontroller.h & newtabcontroller.m
2nd is oldtabcontroller.h & oldtabcontroller.m
is possible to use two different tabbarcontroller in app.
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为什么不呢?
但它不应该是另一个 tabbarcontroller 中的 tabbarcontroller。
有一个 TabbarManager 类。然后在某种条件下,加载
-
FirstTabbarController
或-
SecondTabbarController
所有组件和 UITabbarController 本身都应该在 TabbarManager 类中实例化。
它的 init 可能有这样的代码,对于两个 tabbarcontroller 来说类似。
why not?
But it should not be a tabbarcontroller inside another tabbarcontroller.
Have a
TabbarManager
class. Then on some condition, load-
FirstTabbarController
or-
SecondTabbarController
All components and the UITabbarControllers themselves should be instantiated in the TabbarManager class.
Its
init
may have code like this, make similar for two tabbarcontrollers.