如何扩大UIGestureRecognizer的命中区域?

时间:2013-03-21 17:07:40

标签: iphone ios ipad cocoa-touch uikit

我在一些视图上使用的手势识别器很少,但有时视图太小而且难以击中它。使用识别器是必要的,那么如何才能扩大命中区域?

3 个答案:

答案 0 :(得分:22)

如果您是为自定义UIView执行此操作,则应该能够覆盖hitTest:withEvent:方法:

- (UIView *)hitTest:(CGPoint)point withEvent:(UIEvent *)event {
    CGRect frame = CGRectInset(self.bounds, -20, -20);

    return CGRectContainsPoint(frame, point) ? self : nil;
}

以上代码将在视图周围添加20点边框。点击该区域(或视图本身)中的任何位置都将表示命中。

答案 1 :(得分:4)

快速版的@rmaddy回答:

override func hitTest(_ point: CGPoint, with event: UIEvent?) -> UIView? {
    let frame = self.bounds.insetBy(dx: -20, dy: -20);
    return frame.contains(point) ? self : nil;
}

答案 2 :(得分:1)

如果您使用UIImageView作为按钮,则可以使用以下扩展名(Swift 3.0):

extension UIImageView {
open override func hitTest(_ point: CGPoint, with event: UIEvent?) -> UIView? {
    if self.isHidden || !self.isUserInteractionEnabled || self.alpha < 0.01 { return nil }

    let minimumHitArea = CGSize(width: 50, height: 50)
    let buttonSize = self.bounds.size
    let widthToAdd = max(minimumHitArea.width - buttonSize.width, 0)
    let heightToAdd = max(minimumHitArea.height - buttonSize.height, 0)
    let largerFrame = self.bounds.insetBy(dx: -widthToAdd / 2, dy: -heightToAdd / 2)

    // perform hit test on larger frame
    return (largerFrame.contains(point)) ? self : nil
}
}

类似于UIButton扩展程序here