首页 > 系统 > iOS > 正文

iOS 修改UIButton的点击范围

2019-11-09 16:33:02
字体:
来源:转载
供稿:网友
/** * 按钮点击范围的方法 */- (BOOL)pointInside:(CGPoint)point withEvent:(UIEvent *)event {        //首先调用父类的方法确定点击的区域确实在按钮的区域中    BOOL res = [super pointInside:point withEvent:event];    if (res) {        //绘制一个圆形path        UIBezierPath *path = [UIBezierPath bezierPathWithOvalInRect:self.centerButton.frame];        if ([path containsPoint:point]) {            //如果在path区域内,可以接收交互事件,从而截获父视图的点击事件            self.centerButton.userInteractionEnabled = YES;            return YES;                    } else {                        //如果不在path区域内,不可以接收交互事件,从而将事件传给父视图接收            self.centerButton.userInteractionEnabled = NO;            return YES;        }            }    return NO;}
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表