美文网首页乔帮主的遗产
iOS如何修改view的响应范围

iOS如何修改view的响应范围

作者: 雪中夜归人 | 来源:发表于2017-03-17 17:20 被阅读318次

           工作中总是会遇到需要按钮的点击范围比实际的fram大的情况,原来一般都是在上边添加一个范围更大的按钮,这样确实能够实现效果,但是每次都这样写会很low。
           最近细细研究这块终于发现可以重写view的

    - (BOOL)pointInside:(CGPoint)point withEvent:(UIEvent *)event;
    

    的这个方法就可以实现。其实这个方法就是传个你点击的点 然后你去判断这个点是否在视图上。

    下边直接贴上自己写的uiview的拓展类

    @interface UIView (ChangeScope)
    
    - (void)changeViewScope:(UIEdgeInsets)changeInsets;
    
    @end
    

    #import "UIView+ChangeScope.h"

    #import <objc/runtime.h>

    @implementation UIView (ChangeScope)
    
    static char *changeScopeKey;
    
    - (void)setChangeScope:(NSString *)changeScope
    {
        objc_setAssociatedObject(self, &changeScopeKey, changeScope, OBJC_ASSOCIATION_COPY_NONATOMIC);
    }
    
    - (NSString *)changeScope
    {
        return objc_getAssociatedObject(self, &changeScopeKey);
    }
    
    - (void)changeViewScope:(UIEdgeInsets)changeInsets
    {
         self.changeScope = NSStringFromUIEdgeInsets(changeInsets);
    }
    
    - (BOOL)pointInside:(CGPoint)point withEvent:(UIEvent *)event
    {
         UIEdgeInsets changeInsets = UIEdgeInsetsFromString(self.changeScope);
          if (changeInsets.left != 0 || changeInsets.top != 0 || changeInsets.right != 0 || changeInsets.bottom != 0) {
              CGRect myBounds = self.bounds;
              myBounds.origin.x = myBounds.origin.x + changeInsets.left;
              myBounds.origin.y = myBounds.origin.y + changeInsets.top;
              myBounds.size.width = myBounds.size.width - changeInsets.left - changeInsets.right;
              myBounds.size.height = myBounds.size.height - changeInsets.top - changeInsets.bottom;
             return CGRectContainsPoint(myBounds, point);
          } else {
            return CGRectContainsPoint(self.bounds,point);
         }
    }
    @end
    

    相关文章

      网友评论

        本文标题:iOS如何修改view的响应范围

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