day8---UITabBarController

一 分栏控制器 UITabBarController
分栏控制器和导航控制器都是用来管理视图控制器的

导航控制器是用来管理视图控制器之间的导航,视图控制器之间的层递关系,一级-》二级-》三级。。

分栏控制器是管理固定的几个视图控制器,子视图控制器之间是并列关系(平级关系),可以任意切换显示;
分栏控制器可以管理导航控制器  ;
导航控制器不能管理分栏控制器;
【Demo】-【1-UITabBarController】
设计4个导航控制器,用分栏控制器管理
  • (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {

    self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
    self.window.backgroundColor = [UIColor whiteColor];
    [self.window makeKeyAndVisible];

    ViewController1 *vc1 = [[ViewController1 alloc] init];
    // vc1.title = @"主页";
    // vc1.tabBarItem.image = [UIImage imageNamed:@"tab_0"];
    UITabBarItem *item1 = [[UITabBarItem alloc] initWithTitle:@"主页" image:[UIImage imageNamed:@"tab_0"] tag:100];
    vc1.tabBarItem = item1;

    UINavigationController *nvc1 = [[UINavigationController alloc] initWithRootViewController:vc1];

ViewController2 *vc2 = [[ViewController2 alloc] init];

// vc2.title = @"页面二";
// vc2.tabBarItem.image = [UIImage imageNamed:@"tab_1"];
UITabBarItem *item2 = [[UITabBarItem alloc] initWithTitle:@"页面二" image:[UIImage imageNamed:@"tab_1"] selectedImage:[UIImage imageNamed:@"tab_2"]];
vc2.tabBarItem = item2;

UINavigationController *nvc2 = [[UINavigationController alloc] initWithRootViewController:vc2];


ViewController3 *vc3 = [[ViewController3 alloc] init];

// vc3.title = @"页面三";
// vc3.tabBarItem.image = [UIImage imageNamed:@"tab_2"];
UITabBarItem *item3 = [[UITabBarItem alloc] initWithTabBarSystemItem:UITabBarSystemItemDownloads tag:101];
vc3.tabBarItem = item3;

UINavigationController *nvc3 = [[UINavigationController alloc] initWithRootViewController:vc3];



ViewController4 *vc4 = [[ViewController4 alloc] init];
vc4.title = @"页面四";
UINavigationController *nvc4 = [[UINavigationController alloc] initWithRootViewController:vc4];
vc4.tabBarItem.image = [UIImage imageNamed:@"tab_3"];




//*************** 创建分栏控制器对象 *************//
UITabBarController *tabVC = [[UITabBarController alloc] init];
//把4个导航控制器对象给tabVC管理
tabVC.viewControllers = @[nvc1,nvc2,nvc3,nvc4];
//设置修饰图片
tabVC.tabBar.selectionIndicatorImage = [UIImage imageNamed:@"tab_s"];
//设置tabBar上内容的渲染颜色
tabVC.tabBar.tintColor = [UIColor redColor];

//把tabBar设置为窗口的跟视图控制器
tabVC.tabBar.barStyle = UIBarStyleBlack;
//设置是否透明
tabVC.tabBar.translucent = NO;
//根据设定的值来开启初始界面
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
NSString *str = [defaults objectForKey:@"下标"];
int index = str.intValue;
tabVC.selectedIndex = index;

tabVC.delegate = self;
//把tabVC设置为窗口的根视图控制器
self.window.rootViewController = tabVC;

return YES;

}

二 NSUserDefaults
数据本地存储的方式:
1.plist文件
2.归档(存储自定义的对象,对象要遵守NSCoding协议)
3.文件管理NSFileHandle,NSFileManager
4.NSUserDefaults 单例类
把内存中的数据存储到本地,适合于存储一些小型数据,比如:用户名,密码的保存;播放记录,收藏记录;
5.数据库(存储相比较大一些的数据)

pragma mark -UITabBarControllerDelegate

//当点击tabBarItem的时候,会响应该方法
-(void)tabBarController:(UITabBarController *)tabBarController didSelectViewController:(UIViewController *)viewController{

NSLog(@"%ld",tabBarController.selectedIndex);
int index = (int)tabBarController.selectedIndex;
NSString *str = [NSString stringWithFormat:@"%d",index];

NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
[defaults setObject:str  forKey:@"下标"];
[defaults synchronize];

}

三 如何自定义UITabBar 【开发中最常用】

步骤:
1.隐藏系统自带的tabBar;
2.根据需求自己添加背景视图(frame设置在tabBar的位置);
3.根据项目有需求添加多个按钮/label/UIView......,实现界面的切换
见【Demo】-【2-CustomTabBar】
  • (void)viewDidLoad {
    [super viewDidLoad];

    NSMutableArray *mArr = [NSMutableArray array];
    for (int i=0; i<4; i++) {
    //循环拿到类名所对应的字符串
    NSString *className = [NSString stringWithFormat:@"ViewController%d",i+1];

      //通过字符串反射出对应的类对象
      Class class = NSClassFromString(className);
      //通过类对象创建类的对象
      UIViewController *vc = [[class alloc] init];
      UINavigationController *nvc = [[UINavigationController alloc] initWithRootViewController:vc];
      vc.title = [NSString stringWithFormat:@"界面%d",i+1];
      
      //把4个导航控制器循环依次加入到可变数组中保存起来
      [mArr addObject:nvc];
    

    }

    //把这个数组mArr给标签控制器所管理
    self.viewControllers = mArr;

//自定义tabBar

[self customTabBar];

}

-(void)customTabBar{

/*********** 1.隐藏系统自带的tarBar *************/
self.tabBar.hidden = YES;

/*********** 2.根据项目需求添加背景图片 ************/
UIImageView *bgImageView = [[UIImageView alloc] initWithFrame:CGRectMake(0, screenBounds.size.height-49, screenBounds.size.width, 49)];

// bgImageView.alpha = 0.7;
bgImageView.image = [UIImage imageNamed:@"tabbg"];
bgImageView.userInteractionEnabled = YES;
[self.view addSubview:bgImageView];

/********** 3.根据需求添加多个按钮或者label **********/
_btnArray = [NSMutableArray array];
CGFloat wSpace = (screenBounds.size.width-120)/5;

for (int i=0; i<4; i++) {
    UIButton *btn = [UIButton buttonWithType: UIButtonTypeCustom];
    btn.frame = CGRectMake(wSpace+i*(30+wSpace), 2, 30, 30);
    //在正常状态下显示的背景图片
    [btn setBackgroundImage:[UIImage imageNamed:[NSString stringWithFormat:@"tab_%d",i]] forState:UIControlStateNormal];
    //在选中状态下显示的背景图片
    [btn setBackgroundImage:[UIImage imageNamed:[NSString stringWithFormat:@"tab_c%d",i]] forState:UIControlStateSelected];
    
    if (i==0) {
        btn.selected = YES;
    }
    
    btn.tag = 100+i;
    //添加点击事件
    [btn addTarget:self action:@selector(btnClick:) forControlEvents:UIControlEventTouchUpInside];
    [bgImageView addSubview:btn];
    [_btnArray addObject:btn];
}

UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(wSpace, 34, 30, 2)];
label.backgroundColor = [UIColor yellowColor];
label.tag = 200;
[bgImageView addSubview:label];

}

-(void)btnClick:(UIButton *)btn{
NSLog(@"%ld",btn.tag);

UILabel *label = (UILabel *)[self.view viewWithTag:200];
[UIView animateWithDuration:0.5 animations:^{
    label.frame = CGRectMake(btn.frame.origin.x, 34, 30, 2);
}];


//@[btn1,btn2,btn3,btn4];
for (UIButton *button in _btnArray) {
    if (button.tag == btn.tag) {
        //让当前点击的那个按钮处于选中状态
        btn.selected = YES;
    }else
    {
        //让其他的按钮处于非选中状态
        button.selected = NO;
    }
}




//**************** 4.根据点击的button实现页面的切换 **************************
self.selectedIndex = btn.tag - 100;
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 206,126评论 6 481
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 88,254评论 2 382
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 152,445评论 0 341
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 55,185评论 1 278
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 64,178评论 5 371
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,970评论 1 284
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,276评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,927评论 0 259
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,400评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,883评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,997评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,646评论 4 322
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,213评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,204评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,423评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,423评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,722评论 2 345

推荐阅读更多精彩内容

  • //设置尺寸为屏幕尺寸的时候self.window = [[UIWindow alloc] initWithFra...
    LuckTime阅读 793评论 0 0
  • *7月8日上午 N:Block :跟一个函数块差不多,会对里面所有的内容的引用计数+1,想要解决就用__block...
    炙冰阅读 2,473评论 1 14
  • UITabBarController(标签栏/底部导航栏视图控制器) UITabBarController 本身并...
    小小土豆dev阅读 8,305评论 0 6
  • 1、需求 有如下文本,现在对该文本添加行号: 也就是最终达到如下效果: 这里要实现的就是在Vim中批量填入序列。 ...
    SpaceCat阅读 4,683评论 6 6
  • 断断续续的跑步一年多了,因为受伤暂停过几个月,三天打鱼两天晒网的日子也经历过。最近一段时间终于将跑步的频率稳定下来...
    禅心如水阅读 389评论 1 3