您好,匿名用户
随意问技术百科期待您的加入

navigationcontroller在tabbar中的使用

0 投票

在AppDelegate.h中
@property (strong, nonatomic) UINavigationController *navigationController;

在AppDelegate.m中

self.navigationController=[[UINavigationController alloc]initWithRootViewController:self.viewController];
    [self.window addSubview:navigationController.view];

在用navigationcontroller跳转到一个tabbar的界面,主视图为TabbarMain
在TabbarMain.h中

@interface TabbarMain : UITabBarController<UITabBarControllerDelegate>
@property (strong, nonatomic) UITabBarController *controller;

在TabbarMain.m中

UIViewController *huntingMain=[[HuntingMain alloc]initWithNibName:@"HuntingMain" bundle:nil];
    UIViewController *restaurantMain=[[RestaurantMain alloc]initWithNibName:@"RestaurantMain" bundle:nil];
    restaurantMain.navigationController.view=self.navigationController;
    UIViewController *settingMain=[[SettingMain alloc]initWithNibName:@"SettingMain" bundle:nil];
   UIViewController *moreMain=[[MoreMain alloc]initWithNibName:@"MoreMain" bundle:nil];
   controller=[[UITabBarController alloc]init];
    controller.viewControllers=[NSArray arrayWithObjects:huntingMain, restaurantMain, settingMain,moreMain,nil];//添加4个tabitem
    controller.delegate=self;
    [self.view addSubview:controller.view];

在TabbarMain.m是可以使用[self.navigationController pushViewController:view animated:YES];来进行页面的跳转
但是在某一个tabitem页面中再使用上面的方法就跳转不了,估计是导航控制器对这些tabitem没用(比如说在某个选项卡中有一个列表,单击某项进行跳转),不知道要怎么样才能在tabitem的页面中使用类似[self.navigationController pushViewController:view animated:YES];来进行跳转

用户头像 提问 2012年 12月1日 @ Aries 上等兵 (238 威望)
分享到:

1个回答

0 投票

用UINavigationController来组织你的Tabbar下的viewcontroller
TabbarMain.m

UIViewController *huntingMain=[[HuntingMain alloc]initWithNibName:@"HuntingMain" bundle:nil];

navigationController=[[UINavigationController alloc]initWithRootViewController:self.huntingMain];

controller=[[UITabBarController alloc]init];
    controller.viewControllers=[NSArray arrayWithObjects:navigationController, restaurantMain, settingMain,moreMain,nil];/
用户头像 回复 2012年 12月1日 @ Gemini 上等兵 (319 威望)
提一个问题:

相关问题

0 投票
1 回复 2 阅读
0 投票
0 回复 73 阅读
+1 投票
1 回复 97 阅读
用户头像 提问 2012年 12月1日 @ Aquarius 上等兵 (283 威望)
0 投票
1 回复 75 阅读
用户头像 提问 2012年 12月1日 @ Ezreal 上等兵 (266 威望)
0 投票
1 回复 3 阅读
用户头像 提问 2014年 6月2日 @ Caitlyn 上等兵 (452 威望)

欢迎来到随意问技术百科, 这是一个面向专业开发者的IT问答网站,提供途径助开发者查找IT技术方案,解决程序bug和网站运维难题等。
温馨提示:本网站禁止用户发布与IT技术无关的、粗浅的、毫无意义的或者违法国家法规的等不合理内容,谢谢支持。

欢迎访问随意问技术百科,为了给您提供更好的服务,请及时反馈您的意见。
...