iOS开发之自定义UITabBarController-模态出半透明的控制器

自定义tabBar并modal出半透明的控制器的view.gif

前言

现在很多app,尤其一些直播的app,都在做如上的tabBar点击效果,点击两边的按钮是苹果默认的切换方式,点击中间按钮,是模态出一个新控制器的view,这里主要涉及到自定义UITabBarController,你可能还看到modal出的新控制器的view是半透明的,在显示自己view的同时也可以看到原先控制器的视图,这里主要用了控制器的一个modalPresentationStyle属性来设置,最近看到很多直播app的如上效果,于是想着自己封装实现一下,放出来,供大家参考。

正文

自定义UITabBarController:

自定义UITabBarController的实现原理其实很简单,就是隐藏苹果自带的tabBar,使用自定义UIView代替;然后自定义Button加在自定义的tabBar的view上;最后将自定义的button 与UITabBarController的子viewController一一对应。而自定义的button需要使上面显示按钮图片,下面是文字Label,实现这些的重点是计算Button的imageView和Label的宽度和X坐标值。

下面是具体的实现代码:

CustomTabBar:继承自UIView,充当tabBar

#import <UIKit/UIKit.h>

@class CustomTabBar;

@protocol CustomTabBarDelegate <NSObject>

- (void)myTabbar:(CustomTabBar *)tabbar btnClicked:(NSInteger)index;

@end

@interface CustomTabBar : UIView
/** 初始化方法
 参数1: 位置大小
 参数2: 内部按钮个数
 */
- (instancetype)initWithFrame:(CGRect)frame itemCount:(NSInteger)itemCount;

@property (nonatomic, weak) id<CustomTabBarDelegate> delegate;

@end

#import "CustomTabBar.h"
#import "CustomTabBarItemButton.h"

@interface CustomTabBar ()

@property (nonatomic,assign) NSInteger itemCount;// 子控制器个数
@property (nonatomic,assign) UIButton *previousBtn;// 前一个被点击的按钮

@end

@implementation CustomTabBar

- (instancetype)initWithFrame:(CGRect)frame itemCount:(NSInteger)itemCount
{
    if (self = [super initWithFrame:frame]) {
        // 保存按钮个数
        _itemCount = itemCount;
        
        // 设置背景颜色
        self.backgroundColor = [UIColor whiteColor];
        
        // 创建按钮
        [self createBtn];
    }
    
    return self;
}

#pragma mark 创建tabBarItem
- (void)createBtn {
    // 循环创建按钮
    
    // 计算按钮的宽高
    CGFloat w = self.bounds.size.width / (self.itemCount+1);
    CGFloat h = self.bounds.size.height;
    NSArray *selectedImgArr = @[@"tab_live_p",@"tab_launch",@"tab_me_p"];
    NSArray *normalImgarr = @[@"tab_live",@"tab_launch",@"tab_me"];
    NSArray *titleArr = @[@"首页",@"",@"我"];
    for (int i = 0; i < self.itemCount+1; i ++) {
        
        if(0 == i){
            CustomTabBarItemButton *btn = [[CustomTabBarItemButton alloc] initWithFrame:CGRectMake(i * w, 0, w, h) imgName:normalImgarr[i] selectedImgName:selectedImgArr[i] titleColor:[UIColor colorWithRed:34/255.0 green:209/255.0 blue:188/255.0 alpha:1.0] title:titleArr[i]];
            btn.tag = 0;
            // 添加按钮的点击事件
            [btn addTarget:self action:@selector(btnClicked:) forControlEvents:UIControlEventTouchUpInside];
            
            [self addSubview:btn];
            [self btnClicked:btn];
        }
        if (1 == i) {
            UIButton *btn = [UIButton buttonWithType:UIButtonTypeCustom];
            btn.frame = CGRectMake((self.frame.size.width-87)/2, -37, 87, 87);
            [btn setImage:[UIImage imageNamed:selectedImgArr[i]] forState:UIControlStateNormal];
            btn.tag = 2;
            // 添加按钮的点击事件
            [btn addTarget:self action:@selector(btnClicked:) forControlEvents:UIControlEventTouchUpInside];
            
            [self addSubview:btn];
        }
        
        if(2 == i){
            CustomTabBarItemButton *btn = [[CustomTabBarItemButton alloc] initWithFrame:CGRectMake(i * w, 0, w, h) imgName:normalImgarr[i] selectedImgName:selectedImgArr[i] titleColor:[UIColor colorWithRed:34/255.0 green:209/255.0 blue:188/255.0 alpha:1.0] title:titleArr[i]];
            btn.tag = 1;
            // 添加按钮的点击事件
            [btn addTarget:self action:@selector(btnClicked:) forControlEvents:UIControlEventTouchUpInside];
            
            [self addSubview:btn];
        }

        
    }
}

#pragma mark tabBarItem被点击让代理使UITabBarController的子控制器与其对应
- (void)btnClicked:(UIButton *)btn {

    if (0 == btn.tag||1 == btn.tag) {
        _previousBtn.selected = NO;
        btn.selected = YES;
        
        _previousBtn = btn;
        
    }
    if ([_delegate respondsToSelector:@selector(myTabbar:btnClicked:)]) {
        [_delegate myTabbar:self btnClicked:btn.tag];
    }
}

#pragma mark 当按钮超过了父视图范围,点击是没有反应的。因为消息的传递是从最下层的父视图开始调用hittest方法。当存在view时才会传递对应的event,现在点击了父视图以外的范围,自然返回的是nil。所以当子视图(比如按钮btn)因为一些原因超出了父视图范围,就要重写hittest方法,让其返回对应的子视图,来接收事件。
- (UIView *)hitTest:(CGPoint)point withEvent:(UIEvent *)event{
    UIView *view = [super hitTest:point withEvent:event];
    if (view == nil) {
        
        UIButton *btn = (UIButton *)[self viewWithTag:2];
        CGPoint tempoint = [btn convertPoint:point fromView:self];
        //判断给定的点是否被一个CGRect包含,可以用CGRectContainsPoint函数
        if (CGRectContainsPoint(btn.bounds, tempoint))
        {
            view = btn;
        }
    }
    return view;
}

CustomTabBarItemButton:继承自UIButton,充当tabBarItem

#import <UIKit/UIKit.h>

@interface CustomTabBarItemButton : UIButton

- (instancetype)initWithFrame:(CGRect)frame imgName:(NSString *)imgName selectedImgName:(NSString *)selectedImgName titleColor:(UIColor *)color title:(NSString *)title;

@end


#import "CustomTabBarItemButton.h"

@implementation CustomTabBarItemButton

- (instancetype)initWithFrame:(CGRect)frame imgName:(NSString *)imgName selectedImgName:(NSString *)selectedImgName titleColor:(UIColor *)color title:(NSString *)title
{
    if (self = [super initWithFrame:frame]) {
        // 设置文字,字号,图片,文字颜色
        [self setTitle:title forState:UIControlStateNormal];
        self.titleLabel.font = [UIFont systemFontOfSize:12];
        [self setTitleColor:color forState:UIControlStateNormal];
        [self setImage:[UIImage imageNamed:imgName] forState:UIControlStateNormal];
        [self setImage:[UIImage imageNamed:selectedImgName] forState:UIControlStateSelected];
        
        // 设置文字和图片的位置
        self.imageView.contentMode = UIViewContentModeCenter;
        self.titleLabel.textAlignment = NSTextAlignmentCenter;
    }
    
    return self;
}

#pragma mark 设置高亮状态的方法
// 在这个方法里面,系统会默认给按钮设置高亮状态的的情景
// 覆盖此方法,会使按钮的高亮状态不呈现任何情景
- (void)setHighlighted:(BOOL)highlighted {}

#pragma mark 设置文字frame
- (CGRect)titleRectForContentRect:(CGRect)contentRect
{
    // 标签视图高度占按钮高度的1/3
    return CGRectMake(0, self.bounds.size.height / 3 * 2, self.bounds.size.width, self.bounds.size.height / 3);
}

#pragma mark 设置图片frame
- (CGRect)imageRectForContentRect:(CGRect)contentRect
{
    // 图片视图高度占按钮高度的2/3
    return CGRectMake(0, 0, self.bounds.size.width, self.bounds.size.height / 3 * 2);
}


@end

MyTabBarViewController:继承自UITabBarController

#import "MyTabBarViewController.h"
#import "CustomTabBar.h"
#import "HomeViewController.h"
#import "LiveViewController.h"
#import "MYCenterViewController.h"

#import "AppDelegate.h"

@interface MyTabBarViewController ()<CustomTabBarDelegate>

@end

@implementation MyTabBarViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    
    // 1.设置所有子控制器
    [self addChildViewControllers];
    
    // 2.创建自定义的tabbar
    [self createCustomTabbar];
}

#pragma mark 设置所有的子控制器
- (void)addChildViewControllers {
    
    HomeViewController *homeVC = [[HomeViewController alloc] init];
    MYCenterViewController *myCenterVC = [[MYCenterViewController alloc] init];
    
    // 设置子控制器
    self.viewControllers = @[homeVC, myCenterVC];
}

#pragma mark 隐藏系统自带的tabBar,创建自定义的tabBar
- (void)createCustomTabbar {
    // 1.隐藏系统tabbar
    self.tabBar.hidden = YES;
    
    // 2.创建自定义的tabbar
    CustomTabBar *myTabbar = [[CustomTabBar alloc] initWithFrame:CGRectMake(0, [UIScreen mainScreen].bounds.size.height - 50, [UIScreen mainScreen].bounds.size.width, 50) itemCount:self.viewControllers.count];
    myTabbar.delegate = self;
    [self.view addSubview:myTabbar];
}

#pragma mark CustomTabBarDelegate方法,tabBarItem被点击
- (void)myTabbar:(CustomTabBar *)tabbar btnClicked:(NSInteger)index
{
    if (2 == index) {
        /*
         *当点击中间的按钮,modal出LiveViewController的视图,并且不覆盖原先视图
         */
        //iOS 8.0之后的方法
        if([[[UIDevice currentDevice] systemVersion] floatValue]>=8.0){
            
            LiveViewController *liveVC = [[LiveViewController alloc] init];
            //设置modal出的视图view的透明度
            liveVC.view.alpha = 0.9;
            //此模式必须设置,否则会覆盖原先视图,看不到原先视图的view
            liveVC.modalPresentationStyle = UIModalPresentationOverCurrentContext;
            [self presentViewController:liveVC animated:YES completion:nil];
            
        }else{
            //在iOS7或更低需要设置你的window.rootViewController.modalPresentationStyle = UIModalPresentationCurrentContext
            AppDelegate *appdelegate=(AppDelegate*)[[UIApplication sharedApplication] delegate];
            LiveViewController *liveVC = [[LiveViewController alloc] init];
            liveVC.view.alpha = 0.9;
            appdelegate.window.rootViewController.modalPresentationStyle=UIModalPresentationCurrentContext;
            [appdelegate.window.rootViewController presentViewController:liveVC animated:YES completion:nil];
        }
    }else{
        //设置选择的子控制器与点击的按钮相对应
        self.selectedIndex = index;
    }
}
@end
modal出的新控制器的半透明的view:

模态出一个半透明的视图, 在目标视图中设置背景颜色然后发现模态动作结束后变成了黑色或者不是半透明的颜色。在iOS8之后只需要为要present的控制器的modalPresentationStyle属性设置一个最新的值UIModalPresentationOverCurrentContext就可以解决这种需求。
然而这个属性是iOS 8才出来的,所以针对iOS 7或更低的系统,需要设置window的根控制器的modalPresentationStyle为UIModalPresentationCurrentContext。
代码如下:

if([[[UIDevice currentDevice] systemVersion] floatValue]>=8.0){
            LiveViewController *liveVC = [[LiveViewController alloc] init];
            //设置modal出的视图view的透明度
            liveVC.view.alpha = 0.9;
            //此模式必须设置,否则会覆盖原先视图,看不到原先视图的view
            liveVC.modalPresentationStyle = UIModalPresentationOverCurrentContext;
            [self presentViewController:liveVC animated:YES completion:nil];
            
        }else{
            //在iOS7或更低需要设置你的window.rootViewController.modalPresentationStyle = UIModalPresentationCurrentContext
            AppDelegate *appdelegate=(AppDelegate*)[[UIApplication sharedApplication] delegate];
            LiveViewController *liveVC = [[LiveViewController alloc] init];
            liveVC.view.alpha = 0.9;
            appdelegate.window.rootViewController.modalPresentationStyle=UIModalPresentationCurrentContext;
            [appdelegate.window.rootViewController presentViewController:liveVC animated:YES completion:nil];
        }

源码已上传至fenglinyunshi-git,欢迎下载,并提出宝贵意见。

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

推荐阅读更多精彩内容