首页 > 代码库 > 【iOS开发-78】用代码实现UITabBarController+UINavigationController
【iOS开发-78】用代码实现UITabBarController+UINavigationController
#import "WPTabBarController.h" #import "WPFirstViewController.h" #import "WPSecondViewController.h" #import "WPThirdViewController.h" #import "WPFourthViewController.h" @interface WPTabBarController () @end @implementation WPTabBarController - (void)viewDidLoad { WPFirstViewController *firsVc=[[WPFirstViewController alloc]init]; WPSecondViewController *secondVc=[[WPSecondViewController alloc]init]; WPThirdViewController *thirdVc=[[WPThirdViewController alloc]init]; WPFourthViewController *fourthVc=[[WPFourthViewController alloc]init]; //以下两种方式均可设置tabbar上得标题 firsVc.tabBarItem.title=@"消息"; //firsVc.title=@"消息"; secondVc.tabBarItem.title=@"联系人"; //secondVc.title=@"联系人"; thirdVc.tabBarItem.title=@"动态"; //thirdVc.title=@"动态"; fourthVc.tabBarItem.title=@"设置"; //fourthVc.title=@"设置"; //设置icon firsVc.tabBarItem.image=[UIImage imageNamed:@"tab_recent_nor"]; secondVc.tabBarItem.image=[UIImage imageNamed:@"tab_buddy_nor"]; thirdVc.tabBarItem.image=[UIImage imageNamed:@"tab_qworld_nor"]; fourthVc.tabBarItem.image=[UIImage imageNamed:@"tab_me_nor"]; firsVc.view.backgroundColor=[UIColor redColor]; secondVc.view.backgroundColor=[UIColor whiteColor]; thirdVc.view.backgroundColor=[UIColor purpleColor]; fourthVc.view.backgroundColor=[UIColor greenColor]; //用以下方式添加子控制器 //self.viewControllers=@[firsVc,secondVc,thirdVc,fourthVc]; [self addChildViewController:firsVc]; [self addChildViewController:secondVc]; [self addChildViewController:thirdVc]; [self addChildViewController:fourthVc]; [super viewDidLoad]; // Do any additional setup after loading the view. }
核心:
——定义1个tabBat控制器和4个导航控制器,然后通过addChildViewController或者数组的形式把4个导航控制器加到tabBar控制器中。
——每个导航控制器通过tabBarItem属性来设置标题和icon等。
界面截屏:
【iOS开发-78】用代码实现UITabBarController+UINavigationController
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。