tabbar界面怎么添加UInavigationcontroller
1个回答
2016-07-21 · 知道合伙人数码行家
huanglenzhi
知道合伙人数码行家
向TA提问 私信TA
知道合伙人数码行家
采纳数:117538
获赞数:517188
长期从事计算机组装,维护,网络组建及管理。对计算机硬件、操作系统安装、典型网络设备具有详细认知。
向TA提问 私信TA
关注
展开全部
如果是代码在给UITabbarController 指定viewcontrollers属性的时候,所有的控制器使用UINavigationController封装。如
UIViewController *vc1 = [UIViewController new];
UINavigationController *nav1 =[[UINavigationController alloc] initWithRootViewController:vc1];
//////vc2
UIViewController *vc2 = [UIViewController new];
UINavigationController *nav2 =[[UINavigationController alloc] initWithRootViewController:vc2];
////设置为tabbarcontroller的viewcontrollers属性
self.tabbarController.viewControllers = @[nav1,nav2];
如果使用storyboard or xib 就更简单了
选中uitabbarcontroller的item对应的控制器选择菜单上的 editor-》embed in -》 navigation Controller 就可以了
UIViewController *vc1 = [UIViewController new];
UINavigationController *nav1 =[[UINavigationController alloc] initWithRootViewController:vc1];
//////vc2
UIViewController *vc2 = [UIViewController new];
UINavigationController *nav2 =[[UINavigationController alloc] initWithRootViewController:vc2];
////设置为tabbarcontroller的viewcontrollers属性
self.tabbarController.viewControllers = @[nav1,nav2];
如果使用storyboard or xib 就更简单了
选中uitabbarcontroller的item对应的控制器选择菜单上的 editor-》embed in -》 navigation Controller 就可以了
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询