关于iphone中的tabBar控制器

发布于 2024-11-08 20:11:26 字数 165 浏览 0 评论 0原文

嗨朋友,我有问题,是否可以在同一个应用程序中使用两个不同的选项卡栏类。 这意味着我的应用程序中有两个选项卡栏控制器。 第一个是 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 技术交流群。

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

发布评论

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

评论(1

恏ㄋ傷疤忘ㄋ疼 2024-11-15 20:11:26

为什么不呢?
但它不应该是另一个 tabbarcontroller 中的 tabbarcontroller。

有一个 TabbarManager 类。然后在某种条件下,加载
- FirstTabbarController
- SecondTabbarController

所有组件和 UITabbarController 本身都应该在 TabbarManager 类中实例化。
它的 init 可能有这样的代码,对于两个 tabbarcontroller 来说类似。

self.tabBarController = [[UITabBarController alloc] init];
    self.controllers = [[NSMutableArray alloc] init];

// initialize the view controllers and navigation controllers for the tab bar

self.friendsVC = [[FriendsVC alloc] initWithNibName:@"FriendsView" bundle:nil];
UINavigationController *friendsNVC = [[UINavigationController alloc] initWithRootViewController: friendsVC];
friendsNVC.navigationBar.barStyle = UIBarStyleBlack;
[controllers addObject:friendsNVC];  
[friendsNVC release];

self.paymentsVC = [[PaymentsVC alloc] initWithNibName:@"PaymentsView" bundle:nil];
UINavigationController *paymentsNVC = [[UINavigationController alloc] initWithRootViewController: paymentsVC];
paymentsNVC.navigationBar.barStyle = UIBarStyleBlack;
[controllers addObject:paymentsNVC];
[paymentsNVC release];  

tabBarController.viewControllers = controllers;
tabBarController.selectedIndex = 0; 
tabBarController.delegate = self;

self.view = tabBarController.view;

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.

self.tabBarController = [[UITabBarController alloc] init];
    self.controllers = [[NSMutableArray alloc] init];

// initialize the view controllers and navigation controllers for the tab bar

self.friendsVC = [[FriendsVC alloc] initWithNibName:@"FriendsView" bundle:nil];
UINavigationController *friendsNVC = [[UINavigationController alloc] initWithRootViewController: friendsVC];
friendsNVC.navigationBar.barStyle = UIBarStyleBlack;
[controllers addObject:friendsNVC];  
[friendsNVC release];

self.paymentsVC = [[PaymentsVC alloc] initWithNibName:@"PaymentsView" bundle:nil];
UINavigationController *paymentsNVC = [[UINavigationController alloc] initWithRootViewController: paymentsVC];
paymentsNVC.navigationBar.barStyle = UIBarStyleBlack;
[controllers addObject:paymentsNVC];
[paymentsNVC release];  

tabBarController.viewControllers = controllers;
tabBarController.selectedIndex = 0; 
tabBarController.delegate = self;

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