7

我在透明的 UIView 下有一个 UIScrollView。我需要将所有平底锅和水龙头转移到滚动视图(仅水平滚动)。常规 UIView 使用 UIPanGestureRecognizer 的子类来跟踪垂直平移(子类在此处找到)。在覆盖视图中,我重写了触摸事件方法以将它们传递给 UIScrollView。

- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
    [super touchesBegan:touches withEvent:event];
    [self.scrollView.panGestureRecognizer touchesBegan:touches withEvent:event];
    [self.scrollView.singleTapGesture touchesBegan:touches withEvent:event];
}

- (void)touchesCancelled:(NSSet *)touches withEvent:(UIEvent *)event
{
    [super touchesCancelled:touches withEvent:event];
    [self.scrollView.panGestureRecognizer touchesCancelled:touches withEvent:event];
    [self.scrollView.singleTapGesture touchesCancelled:touches withEvent:event];
}

- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event
{
    [super touchesEnded:touches withEvent:event];
    [self.scrollView.panGestureRecognizer touchesEnded:touches withEvent:event];
    [self.scrollView.singleTapGesture touchesEnded:touches withEvent:event];
}

- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event
{
    [super touchesMoved:touches withEvent:event];
    [self.scrollView.panGestureRecognizer touchesMoved:touches withEvent:event];
    [self.scrollView.singleTapGesture touchesMoved:touches withEvent:event];
}

叠加视图,垂直平移完美运行。在 UIScrollView 中,水龙头也可以正常工作。滚动虽然不是那么多。滚动视图滚动大约三个点,然后停止(当我继续水平平移时)。如果我以一个速度放开,滚动视图然后拾取该速度并完成滚动。

导致滚动视图停止滚动然后加快速度的可能问题是什么?

4

3 回答 3

2

从您发布的代码中,我假设您没有对透明 UIView 做任何事情。那么您为什么不设置 userInteractionEnabled = NO; ??

于 2013-03-19T13:19:00.450 回答
0

这是一个更简单的解决方案,对我来说效果很好:

在透明的 UIView(我们称之为 OverlayView)中,使宽度和高度都为 0(这样视图在技术上不再位于 UIScrollView 顶部)并设置 clipsToBounds = NO(这样 OverlayView 的内容仍然显示在顶部UIScrollView)。

 self.OverlayView.clipsToBounds = NO;
 CGRect frame = self.OverlayView.frame;
 self.OverlayView.frame = CGRectMake(frame.origin.x, frame.origin.y, 0, 0);

请注意,如果 OverlayView 包含交互式控件(如上面的按钮),那么它们将不再起作用。您需要将其移动到 UIScrollView 上方的自己的视图中。

于 2013-07-15T17:17:00.517 回答
0
#import "CustomUiView.h"

@implementation CustomUiView.h

-(BOOL) pointInside:(CGPoint)point withEvent:(UIEvent *)event{
    return NO;
}
@end

您不想交互的视图。创建自定义 UIView 类并将此自定义视图用作在 pointInside 方法中返回 NO 的顶视图。然后触摸将自动进入地下。在您的情况下,您的透明 UIView 将是 UIView 的 CustomUiView 子类。

于 2017-11-12T09:55:42.690 回答