Day.03.08 UITabBarController 自定义标签控制器

AppDelegate.m


#import "AppDelegate.h"

#import "CustomTabBarController.h"

@interface AppDelegate ()

@end

@implementation AppDelegate


- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    
    self.window = [[UIWindow alloc]initWithFrame:[UIScreen mainScreen].bounds];
    
    self.window.backgroundColor = [UIColor whiteColor];
    
    [self.window makeKeyAndVisible];
    
    /*——————————————————————————————————————————————————————————————————————————————-*/
    
    UIViewController *vc0 = [[UIViewController alloc]init];
    UIViewController *vc1 = [[UIViewController alloc]init];
    UIViewController *vc2 = [[UIViewController alloc]init];
    UIViewController *vc3 = [[UIViewController alloc]init];
    UIViewController *vc4 = [[UIViewController alloc]init];

    vc0.title = @"HOME";
    vc0.tabBarItem.image = [UIImage imageNamed:@"home.png"];
    vc1.title = @"INFO";
    vc1.tabBarItem.image = [UIImage imageNamed:@"myinfo.png"];
    vc2.title = @"payticket";
    vc2.tabBarItem.image = [UIImage imageNamed:@"payticket"];
    vc3.title = @"discover";
    vc3.tabBarItem.image = [UIImage imageNamed:@"discover"];
    vc4.title = @"store";
    vc4.tabBarItem.image = [UIImage imageNamed:@"store"];
    
    UINavigationController *nav0 = [[UINavigationController alloc]initWithRootViewController:vc0];
    UINavigationController *nav1 = [[UINavigationController alloc]initWithRootViewController:vc1];
    UINavigationController *nav2 = [[UINavigationController alloc]initWithRootViewController:vc2];
    UINavigationController *nav3 = [[UINavigationController alloc]initWithRootViewController:vc3];
    UINavigationController *nav4 = [[UINavigationController alloc]initWithRootViewController:vc4];
    
    
    //1.
    CustomTabBarController *tbc = [[CustomTabBarController alloc]initWithSelectedImge:[UIImage imageNamed:@"选中"] tabBarBackgroundImage:[UIImage imageNamed:@"tab_bg_all"]];
    
    //2.
    tbc.viewControllers = @[nav0,nav1,nav2,nav3,nav4];
    
    tbc.selectedIndex = 2;
    
    /**
     *  分析空间功能和信息来源
     
        1.当设置viewControllers的时候 -> 按钮个数 按钮宽度
     
        2.item的image和title 来源是 -> VC控制器
     
        3.选中图片的位置 -> 点击item调用的代理方法 index
     
        4.背景图 -> 子类化得标签控制器的属性
     */
    
    self.window.rootViewController = tbc;

    
    return YES;
}


@end

CustomTabBarController.h

#import <UIKit/UIKit.h>

@class CustomTabBarItem;

@interface CustomTabBarController : UITabBarController

- (instancetype)initWithSelectedImge:(UIImage *)selectedImage tabBarBackgroundImage:(UIImage *)bgImage;

@end

@interface CustomTabBarItem : UIButton

/**
 *  通过frame和tabBarItem创建按钮的方法
 */

- (instancetype)initWithFrame:(CGRect)frame tabBarItem:(UITabBarItem *)tabBarItem;

@end

CustomTabBarController.m

#import "CustomTabBarController.h"

#define KScreenWidth [UIScreen mainScreen].bounds.size.width

#define KScreenHeight [UISreen mainScreen].bounds.size.height

@interface CustomTabBarController ()

@property (nonatomic,strong) UIView *customTabBar;

@property (nonatomic,strong) UIImage *selectImg;

@property (nonatomic,strong) UIImage *bgImg;//私有属性保存背景图片

@property (nonatomic,strong) UIImageView *selectIV;//选中item背景图片视图

@end

@implementation CustomTabBarController


- (void)viewWillAppear:(BOOL)animated{

    [super viewWillAppear:animated];
    
    _selectIV.frame = CGRectMake(10 +self.selectedIndex *KScreenWidth/self.viewControllers.count, 5, KScreenWidth/self.viewControllers.count -20, 44);
}

- (instancetype)initWithSelectedImge:(UIImage *)selectedImage tabBarBackgroundImage:(UIImage *)bgImage{

    if (self = [super init]) {
        
        _selectImg = selectedImage;
        
        _bgImg = bgImage;
    }
    return self;
}

//重
- (void)setViewControllers:(NSArray<__kindof UIViewController *> *)viewControllers{

    [super setViewControllers:viewControllers];
    /**
     *  
     执行完上面的方法
     
     可以得到当前本控制器管理的视图控制器个数
     
     1.移除原有的按钮 tabbarItem
     2.添加自定义的 tabbarItem
     3.更改背景图片
     4.自定义的选中图片
     */
    
    [self removeTabBarButtons];
    
    [self createNewTaBar];
    
    [self createTabBarButton];
    
}

#pragma mark --1.移除原有的所有tabBarButton
/**
 *  1.移除tabbar上所有的tabbarItem
 */
- (void)removeTabBarButtons{

    NSLog(@"%@",self.tabBar.subviews);
    
    for (UIView *subView in self.tabBar.subviews) {
        
        /**
         *  NSClassFromString(NSString *aClassName) -> 将字符串转化为对应的类名
         
         UITabBarButton -> 标签控制器定义的内部类[tabbar上的按钮]
         */

        if ([subView isKindOfClass:NSClassFromString(@"UITabBarButton")]) {
            
            [subView removeFromSuperview];
        }
    }
}

/**
 *  2.创建新的有背景图的tabbar
 */
- (void)createNewTaBar{

    _customTabBar = [[UIView alloc]initWithFrame:CGRectMake(0, 0, KScreenWidth, 49)];
    
    _customTabBar.backgroundColor = [UIColor colorWithPatternImage:[_bgImg stretchableImageWithLeftCapWidth:160 topCapHeight:25]];
    
    [self.tabBar addSubview:_customTabBar];
}

/**
 *  3.创建标签按钮
 */
- (void)createTabBarButton{

    //1.获取控制器个数
    NSInteger count = self.viewControllers.count;
    
    //2.选中的背景图片
    _selectIV = [[UIImageView alloc]initWithFrame:CGRectMake(10, 5, KScreenWidth/count -20, 44)];
    
    _selectIV.image = _selectImg;
    
    [_customTabBar addSubview:_selectIV];
    
    /*——————————————————————————————————————————————————————————————————————————————-*/
    
    //创建按钮
    //1.根据个数创建按钮
    for (int i = 0; i <count; i++) {
        
        //计算按钮的frame
        CGRect itemFrame = CGRectMake(i *KScreenWidth/count, 0, KScreenWidth/count, 49);
        
        //获取按钮对应的控制器的item
        UITabBarItem *tabBarItem = self.viewControllers[i].tabBarItem;
        
        //创建
        CustomTabBarItem *item = [[CustomTabBarItem alloc]initWithFrame:itemFrame tabBarItem:tabBarItem];
        
        //tag值
        item.tag = 100 +i;
        
        //添加事件
        [item addTarget:self action:@selector(itemClick:) forControlEvents:UIControlEventTouchUpInside];
        
        [_customTabBar addSubview:item];
    }
    
}

- (void)itemClick:(UIButton *)item{

//切换视图控制器
    //1.获取点击按钮的index
    NSInteger index = item.tag - 100;
    
    //2.更改当前显示的VC
    self.selectedIndex = index;
    
    /*——————————————————————————————————————————————————————————————————————————————-*/
    
    //选中图片移动动画
    
    [UIView animateWithDuration:0.25 animations:^{
        
        _selectIV.frame = CGRectMake(10 +self.selectedIndex *KScreenWidth/self.viewControllers.count, 5, KScreenWidth/self.viewControllers.count -20, 44);
    }];
}



- (void)viewDidLoad {
    [super viewDidLoad];

}


@end



@implementation CustomTabBarItem

- (instancetype)initWithFrame:(CGRect)frame tabBarItem:(UITabBarItem *)tabBarItem{

    if (self = [super initWithFrame:frame]) {
        
        /**
         *  tabBarItem:包含创建item所需要的title和image
         */
        //创建ImageView Label
        
        //1.Label
        UILabel *label = [[UILabel alloc]initWithFrame:CGRectMake(0, 0, frame.size.width, 20)];
        
        //居中
        label.textAlignment = NSTextAlignmentCenter;
        
        //字号
        label.font = [UIFont systemFontOfSize:10];
        
        //颜色
        label.textColor = [UIColor whiteColor];
        
        //内容 --> 从tabBarItem获取
        label.text = tabBarItem.title;
        
        [self addSubview:label];
        
        //2.Image
        UIImageView *imageView = [[UIImageView alloc]initWithFrame:CGRectMake((frame.size.width-29)/2, 20, 29, 29)];
        
        //内容模式
        imageView.contentMode = UIViewContentModeScaleAspectFit;
        
        //图片 --> 从tabbarItem获取
        imageView.image = tabBarItem.image;
        
        [self addSubview:imageView];
    }

    return self;
}

@end

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

推荐阅读更多精彩内容