美文网首页
扩大button的点击事件

扩大button的点击事件

作者: 阶梯 | 来源:发表于2017-08-31 15:54 被阅读37次

    经常会遇到这种情况,有些app的删除或着其他按钮看上去很小,但是你点击的时候却是可以点击到它。这里介绍一个小技巧来实现这个功能,就是重写button的hitTest方法,扩大button的点击范围即可,做法就是自定义一个Button,然后在.m里重写即可,做法如下

    下面是将button的点击区域向两侧扩展了20 point大小

    - (UIView *)hitTest:(CGPoint)point withEvent:(UIEvent *)event
    
    {
    
        CGFloat margin = 20;
    
        CGRect hitRect = CGRectMake(0 - margin, 0 - margin, self.bounds.size.width + 2 * margin, self.bounds.size.height + 2 * margin);
    
        return CGRectContainsPoint(hitRect, point) ? self : nil;
    
    }
    

    相关文章

      网友评论

          本文标题:扩大button的点击事件

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