iOS-个人整理15 - 标签视图控制器--UITabBarController

一、UITabBarController

微信底部那一排 微信、通讯录、发现、朋友圈,就是UITabBarController
它上面的控制的四个视图控制器是平级的,一般情况下将self.window.rootViewController设置为UITabBarController
然后在UITabBarController上面添加UINavigationController
UINavigationController上面添加一般的UIViewController
UITabBarController-->UINavigationController-->UIViewController

二、属性和方法

UITabBar的高度是49,最多显示5个UITabBarItem,超过5个会增加一个更多按钮。

 #import "RootTabBarController.h" 
#import "SecondViewController.h" 

    //创建一个ViewController加到NavigationController上  
    //再将NavigationController加到TabBarController上  
  
    RootViewController *rootVC = [[RootViewController alloc]init]; 
 
    UINavigationController *navigationC = [[UINavigationController alloc]initWithRootViewController:rootVC];  
      
    //创建UITabBarController  
    UITabBarController *myTabBar = [UITabBarController new];  
      
    //将导航控制器放入tabBar  
    myTabBar.viewControllers = @[navigationC];  
      
    //设置底部的item标题,这个字很小  
    navigationC.tabBarItem.title = @"根";  
      
    //设置图片,这里图片大小不能自适应,最好把图片裁好 40*40,照片还有设置渲染效果,背景色会影响照片显示  
    navigationC.tabBarItem.image = [[UIImage imageNamed:@"b3.gif"]  
    imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal];;  
      
    //设置tabBar的字体颜色  
    myTabBar.tabBar.tintColor = [UIColor colorWithRed:109/255.0 green:211/255.0 blue:206/255.0 alpha:1];  
      
    //设置tabbar背景颜色  
    myTabBar.tabBar.barTintColor =  [UIColor colorWithRed:200/255.0 green:233/255.0 blue:160/255.0 alpha:1];  
  
    //是否半透明  
    myTabBar.tabBar.translucent = NO;  
  
    //将tabBarController设置为根视图控制器  
    self.window.rootViewController = myTabBar;  
      
    //把SecondView添加  
    SecondViewController *secondVC = [[SecondViewController alloc]init];  
    UINavigationController *secondNavC = [[UINavigationController alloc]initWithRootViewController:secondVC];  
      
    //设置标题  
    secondNavC.tabBarItem.title = @"second";  
      
    //设置item角标,右上角的红色数字,未读消息数  
    secondNavC.tabBarItem.badgeValue = @"10";  
  
    //当前被选中的页面/按钮    
    myTabBar.selectedIndex = 0;  
  
    //将第三个界面加入  
    tabbar ThirdViewController *thirdVC = [[ThirdViewController alloc]init];   
    UINavigationController *thirdNavC = [[UINavigationController alloc]initWithRootViewController:thirdVC];   
    thirdNavC.tabBarItem.title = @"third";   
    //将所有视图加入  
    tabbar myTabBar.viewControllers = @[navigationC,secondNavC,thirdNavC];   
    //设置默认页   
    myTabBar.selectedIndex = 1;   
    //设置为根视图控制器 RootTabBarViewController *rootTabBarVC = [[RootTabBarViewController alloc]init];   
    self.window.rootViewController = rootTabBarVC  

UITabBarController 自带逻辑,点击下面的分区bar会自动跳转到相应的NavigationController下的ViewController

这是UITabBarItem的样式和对应的枚举值


三、自定义UITabBarViewController

系统的TabBar有时不能满足我们的需求,我们可以更改它的外观。
自定义一个UIView的视图,贴在UITabBar的View上
将UITabBarController的tabbar属性的hidden设置为YES,就可以隐藏原有的tabbar显示了。

先写自定义的tabBarUIview,思路是做一个底部横条视图,给上面加上自定义的button,给button加上方法,该方法来改变系统的UITabBarController的selectedIndex值。
这里涉及一个页面间传值的问题,可以使用block或者协议方法
customTabBarView.h

#import <UIKit/UIKit.h>  
  
//block传值  
  
typedef void(^passValue)(NSInteger tag);  
  
@protocol CustomTabBarDelegate <NSObject>  
  
//把btn的tag传出去的方法  
-(void)selectedIndexWithTag:(NSInteger)tag;  
  
@end  
  
@interface CustomTabBarView : UIView  
  
@property (nonatomic,copy)passValue passValueTag;  
@property (nonatomic,assign)id <CustomTabBarDelegate>delegate;  
  
@end  

customTabBarView.m


#import "CustomTabBarView.h"  
  
@implementation CustomTabBarView  
  
//创建按钮  
-(void)createSubViews  
{  
      
    for (int i = 0; i < 2; i ++) {  
        //初始化按钮  
        UIButton *btn = [UIButton buttonWithType:UIButtonTypeCustom];  
        [btn setTitle:[@(i) stringValue] forState:UIControlStateNormal];  
          
        //点击时的样式  
        [btn setTitle:@"选" forState:UIControlStateHighlighted];  
        [btn setTitle:@"33" forState:UIControlStateFocused];  
        [btn setImage:[[UIImage imageNamed:@"b33"]imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal] forState:UIControlStateSelected];  
        [btn setTitle:@"" forState:UIControlStateSelected];  
          
        //选中状态  
//        btn.selected = NO;  
          
        //通过tag值来确定我们点击的是哪一个按钮,来切换到对应的视图控制器  
        [btn setTag:1000+i];  
          
        //设置点击方法  
        [btn addTarget:self action:@selector(customSelectedIndex:) forControlEvents:UIControlEventTouchDown];  
          
        //设置frame  
        btn.frame = CGRectMake((414)/2*i, 0, 414/2, 50);  
          
          
        [self addSubview:btn];  
    }  
}  
  
//按钮的回调方法  
-(void)customSelectedIndex:(UIButton*)sender  
{  
    for (int  i = 0; i< 2; i++) {  
        UIButton *btn = (UIButton*)[self viewWithTag:1000+i];  
        btn.selected = NO;  
    }  
      
    sender.selected = YES;  
      
//    判断在指定的代理类中是否实现了该协议方法  
//    确保执行时无此方法时不崩溃  
    if([self.delegate respondsToSelector:@selector(selectedIndexWithTag:)])  
    {  
        [self.delegate selectedIndexWithTag:(sender.tag - 1000)];  
    }  
    else  
    {  
        NSLog(@"selectIndexWithTag该方法没有实现");  
    }  
      
    //调用block方法  
    //self.passValueTag(sender.tag - 1000);  
      
}  
  
//初始化自定义的UIView  
-(instancetype)initWithFrame:(CGRect)frame  
{  
    //设置frame  
    frame = CGRectMake(0, 736-50, 414, 50);  
      
    self = [super initWithFrame:frame];  
    if (self) {  
        [self createSubViews];  
        self.backgroundColor = [UIColor colorWithRed:109/255.0 green:211/255.0 blue:206/255.0 alpha:1];  
    }  
      
    return self;  
}  
  
@end  

在RootTabBController.m中添加自定义的视图,并隐藏原本的TabBar
这里的secondViewController和FirstViewController就是跳转后显示的VC

#import "RootTabBarController.h"  
#import "FirstViewController.h"  
#import "SecondViewController.h"  
#import "CustomTabBarView.h"  
  
//导入协议  
@interface RootTabBarController ()<CustomTabBarDelegate>  
  
@end  
  
@implementation RootTabBarController  
  
-(void)viewDidLoad  
{  
    [super viewDidLoad];  
      
    //创建视图控制器  
    FirstViewController *firstVC = [[FirstViewController alloc]init];  
    UINavigationController *firstNavC = [[UINavigationController alloc]initWithRootViewController:firstVC];  
    firstVC.view.backgroundColor = [UIColor colorWithRed:109/255.0 green:211/255.0 blue:206/255.0 alpha:1];  
      
    SecondViewController *secondVC = [[SecondViewController alloc]init];  
    UINavigationController *secondNavC = [[UINavigationController alloc]initWithRootViewController:secondVC];  
    secondVC.view.backgroundColor = [UIColor colorWithRed:200/255.0 green:233/255.0 blue:160/255.0 alpha:1];  
      
    //给tabBarController添加子控制器  
    [self addChildViewController:firstNavC];  
    [self addChildViewController:secondNavC];  
      
    //使用自定义的tabbar先把系统的隐藏掉  
    self.tabBar.hidden = YES;  
      
    //初始化自定义的tabbar  
    CustomTabBarView *customView = [[CustomTabBarView alloc]initWithFrame:CGRectZero];  
    [self.view addSubview:customView];  
      
    //指定代理  
    customView.delegate = self;  
      
    //设置block内容  
    customView.passValueTag = ^(NSInteger tag)  
    {  
        self.selectedIndex = tag;  
    };     
}  
//实现代理方法  
- (void)selectedIndexWithTag:(NSInteger)tag  
{  
    self.selectedIndex = tag;  
}  
@end  

做的比较丑和简单


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

推荐阅读更多精彩内容

  • UITabBarController(标签栏/底部导航栏视图控制器) UITabBarController 本身并...
    小小土豆dev阅读 8,294评论 0 6
  • 前言的前言 唐巧前辈在微信公众号「iOSDevTips」以及其博客上推送了我的文章后,我的 Github 各项指标...
    VincentHK阅读 5,335评论 3 44
  • 早上刚出门,才发现,已经是入秋了!只是叶子还没有落,人却已经加衣了。 以前的时候,我是不惧怕寒冷的,可是不知从何起...
    林蔓谷阅读 415评论 0 0
  • 我来到你的城☞重庆 2017·5月·重庆 步游重庆【小确幸,微梦想】 2016那些走过的路,看过的景☞你好奇不 2...
    舒涵vivian阅读 1,175评论 0 1
  • 引言: 一直想用这个题目很久了。折中了这么多年的思想,最后也还是喜欢鬼神文化所以带来的神秘感。喜欢吸血鬼伯爵,也喜...
    朱竹煮助阅读 632评论 2 4