ios Tabbar 中间凸出简单有效的实现和hitTest:withEvent:方法

效果.gif

效果如上,仅仅是要求中间的tabbar上移,并且上部分是有点击反应的。

创建UITabbarViewController

1、我们创建自己的YLeBaseViewController 集成 UITabBarController
并将其设置为整个window的rootViewController.

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    // Override point for customization after application launch.
    YLeBaseViewController *yLeBaseVC = [[YLeBaseViewController alloc] init];
    self.window.rootViewController = yLeBaseVC;
    [self.window makeKeyAndVisible];
    return YES;
}

2、我们设置tabbar的样式,以及每个tabbar按钮对应的页面

-(void)initWithTabbar{
    [UITabBar appearance].translucent = YES;//不透明
    [[UITabBar appearance] setBackgroundColor:[UIColor whiteColor]];
    
    YLeBaseNavigationController *navClub = (YLeBaseNavigationController *)[[YLeBaseNavigationController alloc] initWithRootViewController:[[UIViewController alloc] init]];
    YLeBaseNavigationController *navVideo = [(YLeBaseNavigationController *)[YLeBaseNavigationController alloc] initWithRootViewController:[[UIViewController alloc] init]];
    YLeBaseNavigationController *navHome = [(YLeBaseNavigationController *)[YLeBaseNavigationController alloc] initWithRootViewController:[[UIViewController alloc] init]];
    YLeBaseNavigationController *navLive = [(YLeBaseNavigationController *)[YLeBaseNavigationController alloc] initWithRootViewController:[[UIViewController alloc] init]];
    YLeBaseNavigationController *navMe = [(YLeBaseNavigationController *)[YLeBaseNavigationController alloc] initWithRootViewController:[[UIViewController alloc] init]];
    
    [self addChildVC:navClub title:@"" image:@"club_n" selectedImage:@"club"];//Club
    [self addChildVC:navVideo title:@"" image:@"video_n" selectedImage:@"video"];//Live
//只是占位
    [self addChildVC:navHome title:@"Home" image:@"" selectedImage:@""];
    [self addChildVC:navLive title:@"" image:@"live_n" selectedImage:@"live"];//Video
    [self addChildVC:navMe title:@"" image:@"me_n" selectedImage:@"me"];//Me
    
}

-(void)addChildVC:(UIViewController *)childVC title:(NSString *)title image:(NSString *)image selectedImage:(NSString *)selectedImage{
    childVC.tabBarItem.title = title;
    childVC.tabBarItem.imageInsets = UIEdgeInsetsMake(5, 5, -5, -5);
    childVC.tabBarItem.image = [[UIImage imageNamed:image] imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal];
    childVC.tabBarItem.selectedImage = [[UIImage imageNamed:selectedImage] imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal];
    [childVC.tabBarItem setTitleTextAttributes:@{NSForegroundColorAttributeName:[UIColor redColor]} forState:UIControlStateNormal];
    [childVC.tabBarItem setTitleTextAttributes:@{NSForegroundColorAttributeName:[UIColor grayColor]} forState:UIControlStateSelected];
    [self addChildViewController:childVC];
}

我们此时有5个按钮,且中间一个是没有图片的。

接下来的重点:

1、中间的tabbar Button和其他的是不相同的。
我们写一个自己的tabbar 继承UITabBar,然后我们设置这个的UI

@interface YLeCenterTabbar : UITabBar

@property(nonatomic, strong) UIButton *centerBtn;

@end
-(instancetype)init{
    if (self = [super init]) {
        [self setViews];
    }
    return self;
}

-(void)setViews{
    self.centerBtn = [UIButton buttonWithType:UIButtonTypeCustom];
    UIImage *normalImg = [UIImage imageNamed:@"home"];
    
    self.centerBtn.frame = CGRectMake(0, 0, normalImg.size.width, normalImg.size.height);
    [self.centerBtn setImage:normalImg forState:UIControlStateNormal];
    //btn center的位置位于tabbar的上边沿
    self.centerBtn.frame = CGRectMake(([UIScreen mainScreen].bounds.size.width - normalImg.size.width)/2.0, -normalImg.size.height/2.0, normalImg.size.width, normalImg.size.height);
    
    [self addSubview:self.centerBtn];
}

我们设置了图片,以及其中button的frame,之后我们通过KVC 的方式,用这个类型的实例变量替换系统的tabbar。接下来的重点是,我们点击这个替换之后按钮的时候是没有用的,于是我们需要在上面自定义按钮的时候添加:

//超出区域外点击无效
-(UIView *)hitTest:(CGPoint)point withEvent:(UIEvent *)event{
//tabbarVC 是否隐藏,隐藏了就不需要考虑点击了
    if (self.hidden) {
        return [super hitTest:point withEvent:event];
    }else{
        //将centerBtn上的点转化成父View上的点
        CGPoint touch = [self.centerBtn convertPoint:point fromView:self];
        //判断点击的点是否在按钮的区域内
        if (CGRectContainsPoint(self.centerBtn.bounds, touch)) {
            return _centerBtn;
        }else{
            return [super hitTest:point withEvent:event];
        }  
    }
}

此方法- (nullable UIView *)hitTest:(CGPoint)point withEvent:(nullable UIEvent *)event;我们文章后面再说。

2、我们将自定义的tabbar的实例变量替换系统的

YLeBaseViewController.m

- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view.
    
    self.yLeCenterTab = [[YLeCenterTabbar alloc] init];
    self.yLeCenterTab.tintColor = [UIColor redColor];
    
    [self.yLeCenterTab.centerBtn addTarget:self action:@selector(centerBtnClick:) forControlEvents:UIControlEventTouchUpInside];
    //利用kvc 将自己的tabbar赋值给系统的tabbar
    [self setValue:self.yLeCenterTab forKeyPath:@"tabBar"];
    self.selectItem = 0;
    self.delegate = self;
    
    [self initWithTabbar];
}

接下来我们需要实现UITabBarControllerDelegate,tabbar被选中的代理方法。

-(void)tabBarController:(UITabBarController *)tabBarController didSelectViewController:(UIViewController *)viewController{
    if(tabBarController.selectedIndex == 2){
        if (self.selectItem != 2) {
            [self rotationAnimation];
        }
    }else{
        [self.yLeCenterTab.centerBtn.layer removeAnimationForKey:@"shark"];
//        [self.yLeCenterTab.centerBtn.layer removeAllAnimations];
    }
    self.selectItem = tabBarController.selectedIndex;
}

然后是我们自己实现的button的click事件。

-(void)centerBtnClick:(id *)sender{
    NSLog(@"center btn click");
    self.selectedIndex = 2;
    if (self.selectItem != 2) {
        [self rotationAnimation];
    }
    self.selectItem = 2;
}

最后的抖动动画

//抖动
-(void)rotationAnimation{
    CAKeyframeAnimation *animation = [CAKeyframeAnimation animation];
    animation.keyPath = @"transform.rotation";
//    animation.repeatCount = 20;
    animation.repeatDuration = 60.0;
    animation.values = @[@(-M_PI_4 * 0.3),@(M_PI_4 * 0.3),@(-M_PI_4 * 0.3)];
    [self.yLeCenterTab.centerBtn.layer addAnimation:animation forKey:@"shark"];
}

github Demo

hitTest: withEvent: 调用过程

iOS系统事件的传递:

①.当手指触摸屏幕后会产生 '触摸事件', 然后将事件加入UIApplication的管理事件队列中
②.UIApplication会取出事件队列中 '最前面的事件' 分发下去,事先分发给应用程序的主窗口中 'keyWindow'
③.主窗口接收到事件后,分发给自己的子控件,寻找最适合的接收事件的控件
④.找到 '最适合' 接收的控件后,调用控件的touchesBegin/touchesMoved/touchesEnded方法
其中的第三步:
key window对象首先会使用hitTest:withEvent:方法寻找此次Touch操作初始点所在的视图(View),即需要将触摸事件传递给其处理的视图,称之为hit-test view。

window对象会发生一下操作
1、首先在view hierarchy的顶级view上调用hitTest:withEvent:,此方法会在视图层级结构中的每个视图上调用pointInside:withEvent:
2、[pointInside:withEvent:],查询触摸点是否在自己身上,当遍历子控件时,传入的坐标进行转换,将父视图上的坐标点转换成要传递子视图上的坐标点。
如果pointInside:withEvent:返回YES,则继续逐级调用,直到找到touch操作发生的位置,这个视图也就是hit-test view,如果返回NO,hit-test 方法返回nil。
总结:

hitTest的底层实现:当控件接收到触摸事件时,不管能不能处理事件,都会调用hit-test方法,方法的实现过程是:
1:先看自己是否能接受触摸事件
2:再看触摸点是否在自己身上
3:从后往前遍历所有子控件(从subviews数组的末尾向前遍历,直到有子视图返回非空对象或者全部子视图遍历完毕),拿到子控件后,再次重复1,2步骤,要把父控件上的坐标点转换为子控件坐标系下的点,再次执行hit-test方法
4:第一次有子视图返回非空对象,hit-test方法返回此对象,处理结束
5:假如所有子控件都返回非,则hit-test返回自身

控件不接收触摸事件的三种情况:
1> 不接收用户交互 userInteractionEnabled=NO
2> 隐藏 hidden = YES
3> 透明 alpha = 0.0 ~ 0.01
出现此三种情况的时候[hitTest:withEvent:]会忽略,不会去查找子控件。
假如子视图的部分超出父视图的bound区域,父视图没有裁剪(clipsToBounds=NO),超出父视图的部分也会显示,那么超出父视图之外区域的触摸操作不会被响应,因为父视图的pointInside:withEvent:返回NO,这样就不会遍历下面的子视图,此时如果需要相应就需要我们上面的操作。

//作用:去寻找最适合的View
//什么时候调用:当一个事件传递给当前View,就会调用.
//返回值:返回的是谁,谁就是最适合的View(就会调用最适合的View的touch方法)
-(UIView *)hitTest:(CGPoint)point withEvent:(UIEvent *)event{
   
    //1.判断自己能否接收事件
    if(self.userInteractionEnabled == NO || self.hidden == YES || self.alpha <= 0.01) {
        return nil;
    }
    //2.判断当前点在不在当前View.
    if (![self pointInside:point withEvent:event]) {
        return nil;
    }
    //3.从后往前遍历自己的子控件.让子控件重复前两步操作,(把事件传递给,让子控件调用hitTest)
    int count = (int)self.subviews.count;
    for (int i = count - 1; i >= 0; i--) {
        //取出每一个子控件
        UIView *chileV =  self.subviews[i];
        //把当前的点转换成子控件坐标系上的点.
        CGPoint childP = [self convertPoint:point toView:chileV];
        UIView *fitView = [chileV hitTest:childP withEvent:event];
        //判断有没有找到最适合的View
        if(fitView){
            return fitView;
        }
    }
    
    //4.没有找到比它自己更适合的View.那么它自己就是最适合的View
    return self;
    
}

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

推荐阅读更多精彩内容

  • 好奇触摸事件是如何从屏幕转移到APP内的?困惑于Cell怎么突然不能点击了?纠结于如何实现这个奇葩响应需求?亦或是...
    Lotheve阅读 56,962评论 51 599
  • 在iOS开发中经常会涉及到触摸事件。本想自己总结一下,但是遇到了这篇文章,感觉总结的已经很到位,特此转载。作者:L...
    WQ_UESTC阅读 5,996评论 4 26
  • 重点参考链接: View Programming Guide for iOS https://developer....
    Kevin_Junbaozi阅读 4,411评论 0 15
  • 触摸事件的生命周期 当我们手指触碰屏幕的那一刻,一个触摸事件便产生了。经过进程间通信,触摸事件被传递到合适的应用之...
    Gintok阅读 1,345评论 0 3
  • 论学习的仪式感 2018.4.21 周波 一、健脑操给我的启示 “大道至简”学习中,越简单的东西...
    小木匠916阅读 911评论 0 0