美文网首页
iOS自定义TabBar中间凸起样式

iOS自定义TabBar中间凸起样式

作者: 芮淼一线 | 来源:发表于2022-03-05 19:37 被阅读0次

    描述

    iOS自定义TabBar中间凸起样式
    iOS解决超出frame区域无法点击问题

    自定义中间(任意位置)凹凸样式的TabBar

    1. 定制样式很简单,主要是处理超出区域无法点击的问题
    2. 示例代码如下:
    /**
     使UITabBar上面的所有可视控件都可接受touch事件,即使控件超出frame区域
     */
    - (UIView *)hitTest:(CGPoint)point withEvent:(UIEvent *)event{
        if (CGRectContainsPoint(self.bounds, point)){
            return [super hitTest:point withEvent:event];
        }else{
            UIView *targetView = [super hitTest:point withEvent:event];
            if (self.isHidden) {
                return targetView;
            }
            for (UIView *view in self.subviews) {
                if (view.isHidden == NO) {
                    CGPoint tempPoint = [view convertPoint:point fromView:self];
                    if (CGRectContainsPoint(view.bounds, tempPoint)){
                        targetView = view;
                        break;
                    }
                }
            }
            return targetView;
        }
    }
    

    相关文章

      网友评论

          本文标题:iOS自定义TabBar中间凸起样式

          本文链接:https://www.haomeiwen.com/subject/clubrrtx.html