iOS UINavigationController和UITabBarController的使用

刚参加工作,希望在这里记录自己工作中遇到的技术点,让未来的自己在工作之余不断回顾,也希望能让同是新手的开发者遇到同样的问题时候能够有所收获.

UINavigationController的单独使用:

UINavigationController:导航控制器,是iOS中最常用的多视图控制器之一,它用来管理多个试图控制器。导航控制器可以认为是管理控制器的控制器,主要管理有层级关系的控制器.UINavigationController 适用于父子页面的跳转.

第一步:删除SB和工程入口main,采用纯代码的方式.新建了ViewController、SecondViewController、ThirdViewController三个类.

第二步:在APPDelegate.m中输入如下的代码,可以设置主窗口,并且把ViewController设置为主控制器

self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]]; self.window.backgroundColor = [UIColor whiteColor]; UINavigationController *navC = [[UINavigationController alloc]initWithRootViewController:[[ViewController alloc]init]]; self.window.rootViewController = naVC; [self.window makeKeyAndVisible];
第三步:在ViewController的viewDidAppear里写如下代码,构造了一个按钮,并定义按钮的跳转事件,设置一个标题为首页.
UIButton *button = [[UIButton alloc]initWithFrame:CGRectMake(50, 100, 50, 20)]; [button setTitle:@"跳转" forState:UIControlStateNormal]; [button setTitleColor:[UIColor blackColor] forState:UIControlStateNormal]; [self.view addSubview:button]; [button addTarget:self action:@selector(jump:) forControlEvents:UIControlEventTouchUpInside]; [self.navigationItem setTitle:@"首页"];
button的跳转事件:这个时候要把SecondViewController的头文件包含进去
-(void)jump:(id)sender{ [self.navigationController pushViewController:[[SecondViewController alloc] init] animated:YES]; }
这个时候我们就能实现从ViewController这个界面到SecondViewController这个界面的跳转了.
第三步:通过导航栏上右边按钮进入第三个界面
在SecondViewController的ViewDidLoad里写如下代码
//导航栏设置标题 [self.navigationItem setTitle:@"第二页"]; //设置右边的按钮 UIBarButtonItem *rightItem = [[UIBarButtonItem alloc] initWithTitle:@"Third" style:UIBarButtonItemStyleBordered target:self action:@selector(pushThird)]; self.navigationItem.rightBarButtonItem = rightItem;
右边按钮的点击事件
-(void)pushThird { // NSLog(@"跳转到第三个界面"); ThirdViewController *thirdVc = [[ThirdViewController alloc]init]; [self.navigationController pushViewController:thirdVc animated:YES]; }
在ThirdViewController的ViewDidLoad里給第三个界面起个标题
[self.navigationItem setTitle:@"第三页"];
到此我们运行程序,就可以简单实现界面的跳转了.

UITabBarController的单独使用

第一步第二步与上面的UINavigationController类似,不需要重复.
第三步:先封装一个加控制器的方法:

-(void)addChildViewController:(NSString *)vcName title:(NSString *)title imageName:(NSString *)imageName
{
1. 根据类名字符串创建对象
UIViewController *vc = [[NSClassFromString(vcName) alloc] init];
2. 设置其tabbarItem上的图标
vc.tabBarItem.image = [UIImage imageNamed:imageName];
3.设置tabbarItem上的标题
vc.tabBarItem.title = title;
}

然后添加子控制器
// 添加子视图控制器 -(void)addChildViewControllers { [self addChildViewController:@"firstViewController" title:@"第一" imageName:@"m1"]; [self addChildViewController:@"secondViewController" title:@"第二" imageName:@"m3"]; }
第四步:在ViewDidLoad里实现这个方法
[self addChildViewControllers];
这样就能实现一个UITabBarController.

UINavigationController和UITabBarController的混合使用

这是我们开发中经常遇到的,在这里我记下自己所用的一个方法
依旧按照之前的第一步和第二步,但这里要注意:混合使用时候还是把TabBarController作为了主控制器.
第三步:和上面的第三步类似,不过要把TabBarController嵌入到导航控制器中
-(void)addChildViewController:(NSString *)vcName title:(NSString *)title imageName:(NSString *)imageName { // 根据类名字符串创建对象 UIViewController *vc = [[NSClassFromString(vcName) alloc] init]; // 设置其tabbarItem上的图标 vc.tabBarItem.image = [UIImage imageNamed:imageName]; // 设置tabbarItem上的标题 vc.tabBarItem.title = title; // 将其嵌入到一个导航栏控制器中 UINavigationController *navi = [[UINavigationController alloc] initWithRootViewController:vc]; // 设置导航栏上的标题 vc.navigationItem.title = @"首页"; // 将导航栏控制器添加到tabBarController [self addChildViewController:navi]; }
这样我们就实现了UINavigationController和UITabBarController的混合使用.

第一次写,代码可能比较low,有什么不正确的地方,欢迎各位指正

你可能感兴趣的:(iOS UINavigationController和UITabBarController的使用)