怎样在tabbarviewcontroller中嵌套navigationcontroller

 我来答
休眠海盗
2014-04-13 · TA获得超过2.4万个赞
知道大有可为答主
回答量:2647
采纳率:0%
帮助的人:2437万
展开全部
大家也许都用过TabBarController和NavigationController,那如何将他们一起使用?附件里写的一个小例子(模板),将向你展示:如何在各个标签页里显示各个NavigationController的视图。大家可以将这个小例子扩展以实现自己的应用。

程序内关键类:

tabBarController:两个导航控制器的控制器,用于切换显示firstViewController和secondViewController

firstViewController:一个导航控制器,具有一个根视图和一个子视图

secondViewController:另一个导航控制器,只有一个根视图
复制代码
这种结构的优势在于:

能够在不同的标签项里实现不同的层次结构(如例子中firstViewController具有根+子视图,secondViewController只有根视图)

可以在tabBar存在的情况下,进入TableView的下一层次的视图,便于切换。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友96ffcf7
2015-08-30 · 知道合伙人互联网行家
百度网友96ffcf7
知道合伙人互联网行家
采纳数:22721 获赞数:118724
从事多年网络方面工作,有丰富的互联网经验。

向TA提问 私信TA
展开全部
在AppDelegate中将tabBarController作为subView,然后再在tabBarController的基础上增加navigationController,
代码如下:
在applicationDidFinishLauchingWithOptions中加入以下代码
<span style="color: #ff0000;">-(BOOL)application:(UIApplication *)applicationDidFinishLauchingWithOptions:(NSDictionary *)lauchingOptions
{
self.window = [[[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]] autorelease];
self.window.backgroundColor = [UIColor whiteColor];

UITabBarController *tabBarController = [[[UITabBarController alloc] init]autorelease];
FirstViewController *firstController = [[FirstViewController alloc] initWithNibName:nil bundle:nil];
UINavigationController *firstNavigation = [[[UINavigationController alloc] initWithRootViewController:firstController]autorelease];
[firstController release];
SecondViewController *secondController = [[SecondViewController alloc] initWithNibName:nil bundle:nil];
UINavigationController *secondNavigation = [[[UINavigationController alloc] initWithRootViewController:secondController]autorelease];
[secondController release];
tabBarController.viewControllers = [NSArray arrayWithObjects:firstNavigation,secondNavigation,nil];
[window addSubview:tabBarController.view];
[window makeKeyAndVisible];
}
</span>
这样之后分别在FirstViewController.m和SecondViewController.m里面加入如下代码:
<span style="color: #ff0000;">-(id)init
{
self = [super initWithNibName:nil bundle:nil];
if(self)
{
UITabBarItem *tabBarItem = [self tabBarItem];
[tabBarItem setTitle] = @"xxx";
[tabBarItem setImage] = [UIImage imageNamed:@"xxxxx"];
}
return self;
}
-(id)initWithNibName:(NSString *)nibName bundle:(NSBundle *bundle)
{
return [self init];
}
</span>
这样的话,就创建了既有navigationBar又有TabBar的应用了,而且这种方法是tabBar在每个界面都是存在的。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
圣鸾OJ
2015-09-29 · TA获得超过1629个赞
知道小有建树答主
回答量:1136
采纳率:96%
帮助的人:112万
展开全部
大家也许都用过TabBarController和NavigationController,那如何将他们一起使用?附件里写的一个小例子(模板),将向你展示:如何在各个标签页里显示各个NavigationController的视图。大家可以将这个小例子扩展以实现自己的应用。

程序内关键类:

tabBarController:两个导航控制器的控制器,用于切换显示firstViewController和secondViewController

firstViewController:一个导航控制器,具有一个根视图和一个子视图

secondViewController:另一个导航控制器,只有一个根视图
复制代码
这种结构的优势在于:

能够在不同的标签项里实现不同的层次结构(如例子中firstViewController具有根+子视图,secondViewController只有根视图)

可以在tabBar存在的情况下,进入TableView的下一层次的视图,便于切换。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式