diff --git a/VDS/Components/Buttons/ButtonBase.swift b/VDS/Components/Buttons/ButtonBase.swift index 60ad36a3..9b1d53c1 100644 --- a/VDS/Components/Buttons/ButtonBase.swift +++ b/VDS/Components/Buttons/ButtonBase.swift @@ -204,28 +204,6 @@ open class ButtonBase: UIButton, ViewProtocol, UserInfoable, Clickable { setAttributedTitle(mutableText, for: .highlighted) } - open override func hitTest(_ point: CGPoint, with event: UIEvent?) -> UIView? { - let size = intrinsicContentSize - // Create a minimumHitArea variable with a value that represents the minimum size of the hit area you want to create for the button. - let minimumHitArea = CGSize(width: size.width, height: hitAreaHeight) - - // Create a new hitFrame variable that is the same size as the minimumHitArea variable, but is centered on the button's frame. - let hitFrame = CGRect( - x: self.bounds.midX - minimumHitArea.width / 2, - y: self.bounds.midY - minimumHitArea.height / 2, - width: minimumHitArea.width, - height: minimumHitArea.height - ) - - // If the point that was passed to the hitTest(_:with:) method is within the hitFrame, return the button itself. This will cause the button to handle the touch event. - if hitFrame.contains(point) { - return self - } - - // If the point is not within the hitFrame, return nil. This will cause the touch event to be handled by another view. - return nil - } - } // MARK: AppleGuidelinesTouchable