美文网首页iOS新手学习
UIButton 扩大点击范围

UIButton 扩大点击范围

作者: 高高叔叔 | 来源:发表于2018-04-20 15:58 被阅读72次

实际开发中经常遇到因为Button太小导致用户无法点击到有效区域影响体验,这时就要增加点击范围。这里我们给Button添加分类的方法处理。(文章末有下载地址)

关联上左下右延伸值
#import "UIButton+EnlargeEdge.h"
#import <objc/runtime.h>

@implementation UIButton (EnlargeEdge)
static char topNameKey;
static char rightNameKey;
static char bottomNameKey;
static char leftNameKey;

- (void)setEnlargeEdgeWithTop:(CGFloat)top right:(CGFloat)right bottom:(CGFloat)bottom left:(CGFloat)left {
    objc_setAssociatedObject(self, &topNameKey, [NSNumber numberWithFloat:top], OBJC_ASSOCIATION_COPY_NONATOMIC);
    objc_setAssociatedObject(self, &rightNameKey, [NSNumber numberWithFloat:right], OBJC_ASSOCIATION_COPY_NONATOMIC);
    objc_setAssociatedObject(self, &bottomNameKey, [NSNumber numberWithFloat:bottom], OBJC_ASSOCIATION_COPY_NONATOMIC);
    objc_setAssociatedObject(self, &leftNameKey, [NSNumber numberWithFloat:left], OBJC_ASSOCIATION_COPY_NONATOMIC);
}
获取范围延伸区域
NSNumber* topEdge = objc_getAssociatedObject(self, &topNameKey);
    NSNumber* rightEdge = objc_getAssociatedObject(self, &rightNameKey);
    NSNumber* bottomEdge = objc_getAssociatedObject(self, &bottomNameKey);
    NSNumber* leftEdge = objc_getAssociatedObject(self, &leftNameKey);
    if (topEdge && rightEdge && bottomEdge && leftEdge){
        return CGRectMake(self.bounds.origin.x - leftEdge.floatValue,
                          self.bounds.origin.y - topEdge.floatValue,
                          self.bounds.size.width + leftEdge.floatValue + rightEdge.floatValue,
                          self.bounds.size.height + topEdge.floatValue + bottomEdge.floatValue);
    }else{
        return self.bounds;
    }
设置点击区域
- (BOOL)pointInside:(CGPoint)point withEvent:(UIEvent *)event {
    CGRect rect = [self enlargedRect];
    if (CGRectEqualToRect(rect, self.bounds)){
        return [super pointInside:point withEvent:event];
    }
    return CGRectContainsPoint(rect, point) ? YES : NO;
}
调用方法
[arrowButton setEnlargeEdgeWithTop:10 right:10 bottom:10 left:5];

源码下载

相关文章

  • ios 扩大UIButton点击范围

    先了解Hit-Test请看上一篇文章https://www.jianshu.com/writer#/noteboo...

  • 扩大UIButton的点击范围

    实现方式:利用runtime写一个button的类别,使用时调用便可。 demo地址扩大按钮点击范围

  • UIButton 扩大点击范围

    实际开发中经常遇到因为Button太小导致用户无法点击到有效区域影响体验,这时就要增加点击范围。这里我们给Butt...

  • 扩大UIButton的点击范围

    有的时候,UI小图标,可是需要可以点击.如果使用button的setImage来设置资源文件,点击范围有可能就变得...

  • 扩大按钮(UIButton)点击范围

    重写一个Button类,这个类继承与UIButton,重写 - (BOOL)pointInside:(CGPo...

  • iOS扩大UIButton点击范围

    由网上各位大神的实现方法,总结如下:为UIButton添加一个分类MSExtendTouchArea

  • UIButton扩大点击范围

    我们在项目开发中可能会出现按钮较小,用户不容易点击的情况。 解决方法 新建UIButton分类,重写- (null...

  • iOS扩大UIButton的点击范围

    怎样来实现这个功能呢?又有多少种方式可以实现呢?下面一一来讲。 理解事件传递过程,用这个来实现扩大点击范围使用Ru...

  • iOS-扩大UIButton点击范围

    重写一个Button类,这个button类继承与UIButton,重写- (BOOL)pointInside:(C...

  • 扩大UIButton的可点击范围

    一般来说按钮的点击范围和按钮的frame是一样的,想要修改button的点击范围,而不修改frame,可以通过以下...

网友评论

    本文标题:UIButton 扩大点击范围

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