TabBarContorller

常规项目基本上都是一个TabBarController,下面有三四个模块,每个模块都是一个NavigationController。别致一点的会在tabBar中间自定义一个样式,如 “ + ” 号等。
系统的UITabBarController自然是可以,但还是不尽如人意。所以项目中多是下面两个第三方TabBarController.

CYLTabBarController

#import "HomeViewController.h"

#import "FirstViewController.h"
#import "SecondViewController.h"
#import "WPNavigationController.h"

@interface HomeViewController ()<UITabBarDelegate>

@end

@implementation HomeViewController
//初始化
- (instancetype)init{
    self = [super init];
    if (self) {
        //设置控制器
        [self setupTabBarController];
        //设置tabBar 高度
        self.tabBarHeight = 60;
        self.tabBarController.tabBar.delegate = self;
        self.moreNavigationController.navigationBarHidden = NO;
    }
    return self;
}
//设置子视图
- (void)setupTabBarController{
    
    FirstViewController *firstVC = [[FirstViewController alloc]init];
    firstVC.view.backgroundColor = [UIColor whiteColor];
    WPNavigationController *firstNav = [[WPNavigationController alloc]initWithRootViewController:firstVC];
    SecondViewController *secondVC = [[SecondViewController alloc]init];
    secondVC.view.backgroundColor = [UIColor greenColor];
    WPNavigationController *secondNav = [[WPNavigationController alloc]initWithRootViewController:secondVC];
    
    
    NSDictionary *dic1 = @{
                           CYLTabBarItemTitle:@"首页",
                           CYLTabBarItemImage:@"home_unselected",
                           CYLTabBarItemSelectedImage:@"home_selected",
                           
                           };
    NSDictionary *dic2 = @{
                           CYLTabBarItemTitle:@"我的",
                           CYLTabBarItemImage:@"me_unselected",
                           CYLTabBarItemSelectedImage:@"me_selected",
                           };
    self.tabBarItemsAttributes = @[dic1,dic2];

    //最后一步设置viewControllers
    [self setViewControllers:@[firstNav,secondNav]];
    //详细设置tabBar的样式
    [self customizeTabBarAppearance:self];
}
/**
 *  可以详细设置tabBar的样式内容
 */
- (void)customizeTabBarAppearance:(CYLTabBarController *)tabBarController {
    
    // 普通状态下的文字属性
    NSMutableDictionary *normalAttrs = [NSMutableDictionary dictionary];
    normalAttrs[NSForegroundColorAttributeName] = HEXCOLOR(0x2c2c2c);
    
    // 选中状态下的文字属性
    NSMutableDictionary *selectedAttrs = [NSMutableDictionary dictionary];
    selectedAttrs[NSForegroundColorAttributeName] = HEXCOLOR(0xd81e06);
    
    // 设置文字属性
    UITabBarItem *tabBarItem = [UITabBarItem appearance];
    [tabBarItem setTitleTextAttributes:normalAttrs forState:UIControlStateNormal];
    [tabBarItem setTitleTextAttributes:selectedAttrs forState:UIControlStateSelected];
    
    // 设置背景图片
    UITabBar *tabBar = [UITabBar appearance];
    [tabBar setBarStyle:UIBarStyleDefault];     //设置tabBar样式
    [tabBar setBarTintColor:[UIColor whiteColor]];//设置tabBar背景色
    // 去除 TabBar 自带的顶部阴影
    [tabBar setShadowImage:[[UIImage alloc] init]];    
    
}

#pragma mark - Delegate Method
#pragma mark - UITabBarControllerDelegate Method
- (void)tabBar:(UITabBar *)tabBar didSelectItem:(UITabBarItem *)item{
    if ([item.title isEqualToString:@"我的"]) {
        NSLog(@"点击了我的");
    }
}

- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view.
}

CYLTabBarController 的父类是UITabBarController,所以可以正常使用父类的所有属性和方法,另外,它最牛X的地方在于自定义特殊tabBarItem时的低耦合性。
只要在工程中新建一个继承自CYLPlusButton 的类,并实现相应的代理方法,会自动检测生成。

#import "CYLPlusButtonSubclass.h"
#import "CYLTabBarController.h"

@interface CYLPlusButtonSubclass ()< CYLPlusButtonSubclassing >
{
    CGFloat _buttonImageHeight;
}
@end

@implementation CYLPlusButtonSubclass

#pragma mark - 注册
+ (void)load {
    [super registerPlusButton];
}

#pragma mark - 初始化
- (instancetype)initWithFrame:(CGRect)frame {
    if (self = [super initWithFrame:frame]) {
        
        self.titleLabel.textAlignment = NSTextAlignmentCenter;
        self.adjustsImageWhenHighlighted = NO;
    }
    return self;
}

#pragma mark上下结构的 button
- (void)layoutSubviews {//initWithFrame时会触发
    
    [super layoutSubviews];
    
    // 控件大小,间距大小.
    //设置图片大小 Width = Height
    CGFloat const imageViewEdgeWidth   = self.bounds.size.width * 0.6;
    CGFloat const imageViewEdgeHeight  = imageViewEdgeWidth ;
    
    CGFloat const centerOfView    = self.bounds.size.width * 0.5; //X轴中心点
    
    CGFloat const labelLineHeight = self.titleLabel.font.lineHeight; //行高
    
    // imageView 和 titleLabel 中心的 Y 值
    CGFloat const centerOfImageView  =  imageViewEdgeWidth * 0.5;
    CGFloat const centerOfTitleLabel = imageViewEdgeHeight  + labelLineHeight * 0.5 + 5  ;
    
    //imageView position 位置
    self.imageView.bounds = CGRectMake(0, 0, imageViewEdgeWidth, imageViewEdgeHeight);
    self.imageView.center = CGPointMake(centerOfView, centerOfImageView);
    //title position 位置
    self.titleLabel.bounds = CGRectMake(0, 0, self.bounds.size.width, labelLineHeight);
    self.titleLabel.center = CGPointMake(centerOfView, centerOfTitleLabel);
}

#pragma mark - CYLPlusButtonSubclassing Methods

//奇数时可以不用实现
+ (NSUInteger)indexOfPlusButtonInTabBar {
    return 1;
}
/**
 *  带标题
 */
+ (id)plusButton {
    
 CYLPlusButtonSubclass *button = [[CYLPlusButtonSubclass alloc] init];
    UIImage *buttonImage_unSelected = [UIImage imageNamed:@"center_unselected"];
    UIImage *buttonImage_selected = [UIImage imageNamed:@"center"];
    [button setImage:buttonImage_selected forState:UIControlStateSelected];
    [button setImage:buttonImage_unSelected forState:UIControlStateNormal];
    [button setTitle:@"思考" forState:UIControlStateNormal];
    [button setTitleColor:HEXCOLOR(0x2c2c2c) forState:UIControlStateNormal];
    [button setTitleColor:HEXCOLOR(0xd81e06) forState:UIControlStateSelected];
    
    button.titleLabel.font = [UIFont systemFontOfSize:11];
    [button sizeToFit];
   
    //[button addTarget:button action:@selector(clickPublisha) forControlEvents:UIControlEventTouchUpInside];
    return button;
}
/**
 *  两个可选的代理方法都在设置button的中心点Y轴方向上的位置
 *  PlusButtonCenterY = multiplierOfTabBarHeight * taBarHeight + constantOfPlusButtonCenterYOffset;
 */

/**
 *  返回值大于0.5表示偏下
 *  返回值小于0.5表示偏上
 *  在图片大小超出tabBar高度时实现这个方法,可以精细控制
 */
+ (CGFloat)multiplierOfTabBarHeight:(CGFloat)tabBarHeight {
    return  0.6;
}
/**
 *  返回值大于0会向下偏移
 *  返回值小于0会向上偏移
 */
+ (CGFloat)constantOfPlusButtonCenterYOffsetForTabBarHeight:(CGFloat)tabBarHeight {
    return  -20;
}

/*
 *  不带标题
 */
//+ (id)plusButton
//{
//
//    UIImage *buttonImage = [UIImage imageNamed:@"hood.png"];
//    UIImage *highlightImage = [UIImage imageNamed:@"hood-selected.png"];
//
//    CYLPlusButtonSubclass* button = [CYLPlusButtonSubclass buttonWithType:UIButtonTypeCustom];
//
//    button.autoresizingMask = UIViewAutoresizingFlexibleRightMargin | UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleBottomMargin | UIViewAutoresizingFlexibleTopMargin;
//    button.frame = CGRectMake(0.0, 0.0, buttonImage.size.width, buttonImage.size.height);
//    [button setBackgroundImage:buttonImage forState:UIControlStateNormal];
//    [button setBackgroundImage:highlightImage forState:UIControlStateHighlighted];
//    [button addTarget:button action:@selector(clickPublish) forControlEvents:UIControlEventTouchUpInside];
//
//    return button;
//}

实现下面这个方法后,自定义的item 会跟其它item一样点击后进入新的VC,如果不实现相当于一个特殊的button,并且一定要实现indexOfPlusButtonInTabBar。

+ (UIViewController *)plusChildViewController {
    UIViewController *plusChildViewController = [[UIViewController alloc] init];
    plusChildViewController.view.backgroundColor = [UIColor redColor];
    plusChildViewController.navigationItem.title = @"PlusChildViewController";
    UIViewController *plusChildNavigationController = [[UINavigationController alloc]
                                                   initWithRootViewController:plusChildViewController];
    return plusChildNavigationController;
}
- (void)clickPublisha{
    NSLog(@"gggg");
}

RDVTabBarController

RDVTabBarController 的父类是UIViewController,所以无法直接使用UITabBarController的方法,图标也无法很方便的自定义。

@interface MainTabViewController()<RDVTabBarControllerDelegate>
@end

@implementation SMTMainTabViewController

- (void)viewDidLoad
{
    [super viewDidLoad];
    self.delegate = self;
    [self setUpControllers];
}
-(void)setUpControllers
{
    FirstViewController *firstVC = [[FirstViewController alloc]init];
    firstVC.view.backgroundColor = [UIColor whiteColor];
    WPNavigationController *firstNav = [[WPNavigationController alloc]initWithRootViewController:firstVC];
    SecondViewController *secondVC = [[SecondViewController alloc]init];
    secondVC.view.backgroundColor = [UIColor greenColor];
    WPNavigationController *secondNav = [[WPNavigationController alloc]initWithRootViewController:secondVC];

    
    [self setViewControllers:@[firstNav, secondNav]];
    
    //定制tabbar
    [self customizeTabBar];
}
- (void)customizeTabBar
{
    UIImage *imgSelected = nil;
    UIImage *imgUnselected = nil;
    NSString*title = @"";
    
    NSInteger index = 0;
    for (RDVTabBarItem *item in [[self tabBar] items]){
        if (index == 0){
            imgSelected = [UIImage imageNamed:@"首页"];
            imgUnselected = [UIImage imageNamed:@"un首页"];
            title = @"首页";
        } else if(index == 1){
            imgSelected = [UIImage imageNamed:@"我的"];
            imgUnselected = [UIImage imageNamed:@"un我的"];
            title = @"我的";
        }
        item.title = title;

        //调整item 图标和标题的位置,使之平排
       //item.titlePositionAdjustment = UIOffsetMake(20, -11);
       //item.imagePositionAdjustment = UIOffsetMake(0, 3);
        
        [item setFinishedSelectedImage:imgSelected withFinishedUnselectedImage:imgUnselected];
        index++;
    }
}    
#pragma mark - RDVTabBarControllerDelegate Methods
- (BOOL)tabBarController:(RDVTabBarController *)tabBarController shouldSelectViewController:(UIViewController *)viewController{
    return YES;
}

PS:VC中要得到RDVTabBarController :
self.rdv_tabBarItem;
self.rdv_tabBarController

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

推荐阅读更多精彩内容

  • 发现 关注 消息 iOS 第三方库、插件、知名博客总结 作者大灰狼的小绵羊哥哥关注 2017.06.26 09:4...
    肇东周阅读 12,081评论 4 62
  • 代码创建UIWindow对象 Xcode7之后使用代码创建UIWindow对象: //创建UIWindow对象 s...
    云之君兮鹏阅读 1,313评论 0 2
  • 有了框图,我们就可以以一种直观的方式来表示程序,也可以用它来在设计时理清思路,在有了问题的时候帮助查漏补缺……所以...
    过客阅读 318评论 0 0
  • 多年前看了《异类》这本书,主要想研究研究比尔盖茨的成功方法 哦原来首富的成功是因为父亲是大律师母亲是银行家千金 I...
    智智杨阅读 816评论 3 4
  • 今天走进班有几个女生在抽噎,眼圈红红的,我以为是第一场考试没考好!所以我便走近劝她们,结果越劝哭得越痛,有个快嘴男...
    杨蕾001阅读 694评论 0 0