4

在过去的四个小时里,我尝试了许多 Stack Overlow 解决方案,但没有一个能帮助解决我的问题。

这里是,

  • 我有一个UIScrollView
  • 在该 ScrollView 中有一个自定义 UILabel 和 8 个自定义 UIImageViews
  • 我想检测长按
  • 像这样的东西

    UILongPressGestureRecognizer *longPress = [[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector(longPressDidFire:)];
    longPress.minimumPressDuration = 0.5; [scroll addGestureRecognizer:longPress]; //scroll defined elsewhere

但是,如果我用滚动的任何子视图替换滚动,则长按事件永远不会触发。

  1. 如何检测长按滚动视图的子视图?
  2. 这是一个相当混乱的黑客,但是,因为我可以检测到滚动视图的长按,有没有什么方法可以检测到按下的位置,以便我可以看到正在按下哪个特定的子视图。

另外,(insert subview here).userInteractionEnabled = YES我为滚动视图的所有子视图设置了这个属性,所以这应该不是问题。

我也尝试过使用 Stack Overflow 其他地方建议的 touchesBegan 和 touchesEnded 方法。

此外,对于图像视图,我确实使用 for 循环为每个自定义图像视图设置了一个新的 UILongPressGestureRecognizer,因为我知道每个手势识别器规则 1 个视图。

来自第一次 iOS 开发者,

格雷厄姆

PS如果我能找到1的解决方案,我真的更喜欢。而不是凌乱的2。


根据要求提供更多代码:

在视图控制器的初始化中

 UILongPressGestureRecognizer *longPress = [[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector(longPressDidFire:)];
longPress.minimumPressDuration = 0.5;
[self.titleLabel addGestureRecognizer:longPress]; //titleLabel property initialized elsewhere
[mainView addSubview:self.titleLabel];

在“加载图像”方法中

for (NSData * dataImg in results) {
//Does some work turning data into an image, into an image view called img
        img.delegate = self;
        img.userInteractionEnabled = YES;
        UILongPressGestureRecognizer *aLongPress = [[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector(longPressDidFire:)];
        aLongPress.minimumPressDuration = 0.5;
        [img addGestureRecognizer:aLongPress];
        [imgContainer addSubview:img];
}

更多代码 + 注释

self.view (UIView)

->滚动(UIScrollView)

->->主视图(UIView)

->->->titleLabel (UILabel)

->->->imgContainer (UIView)

->->->->图像(UIImageViews)

[self.view addSubview:scroll];
[scroll addSubview:mainView];
[mainView addSubview:self.titleLabel];
[mainView addSubview:imgContainer];
[imgContainer addSubview:img]; //done 8x via for loop

感谢@RegularExpression 的回答,我现在知道主视图被按下了,但不是它的子视图,所以我需要找到一种方法来在它上面显示主视图的子视图。:)

另一个更新,titleLabel 有效。ImageViews 仍然不起作用。:(

4

5 回答 5

12

我知道这有点晚了,并且已经选择了答案,但如果你有 iOS7,如果其他人想要一个很好的简单解决方案。

在您的UILongPressGestureRecognizer代表中实现gestureRecognizer:shouldRequireFailureOfGestureRecognizer:otherGestureRecognizer选择器

检查otherGestureRecognizer是否为UIPanGestureRecognizer并返回 YES,否则返回 NO

- (BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldRequireFailureOfGestureRecognizer:(UIGestureRecognizer *)otherGestureRecognizer
{
    if ([otherGestureRecognizer isKindOfClass:[UIPanGestureRecognizer class]]) {
        return YES;
    }

    return NO;
}

滚动视图实际上会产生一个 UIScrollViewPanGestureRecognizer,它是私有 API 的一部分,但它是 UIPanGestureRecognizer 的子类,所以上面的工作正常。

要支持 iOS6 或更低版本,您需要遍历 UIScrollView 的手势识别器,检测哪个是UIPanGestureRecognizer并在您的UILongPressGestureRecogizer上执行requireGestureRecognizerToFail选择器。

于 2013-09-27T13:09:23.567 回答
2

你的代码似乎很好,我认为它应该可以工作。我使用了下面的代码,它对我来说工作正常。

UILongPressGestureRecognizer *longPress = [[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector(handleLongPress:)];
longPress.delegate = (id)self;
longPress.minimumPressDuration=0.05;
imageView.userInteractionEnabled = YES;
[imageView addGestureRecognizer:longPress];

及其方法,

- (IBAction)handleLongPress:(UILongPressGestureRecognizer *)sender {
   NSLog(@"detected");

if (sender.state == UIGestureRecognizerStateEnded){
     UIAlertView *alert = [[UIAlertView alloc]initWithTitle:@"Alert" message:@"YES"    delegate:nil cancelButtonTitle:@"OK" otherButtonTitles: nil];
     [alert show];
   } 
}

正如你所说,在这里我将 imageView 作为滚动视图的子视图

于 2013-04-08T05:02:05.360 回答
1

由于您的 UIScrollView 是共同的父母,这可能是您的手势识别器需要的地方。您可以通过查看操作中提供的点的位置来确定正在按下哪个子视图。因此,各个子视图不需要手势识别器。

所以,你会做这样的事情:

- (void)longPressDidFire:(UILongPressGestureRecognizer *)sender
{
    if (sender.state == UIGestureRecognizerStateEnded)
        CGPoint point = [sender locationInView:scroll];
        UIView *tappedView = [scroll hitTest:point withEvent:nil];

所以,你有长期被压制的观点。

其他可能导致动作不触发的事情是委托问题,或者如果滚动包含在拦截触摸的另一个视图中。

高温高压

于 2013-04-08T04:09:46.427 回答
0

代替

 [scroll addGestureRecognizer:longPress]; 

在子视图上添加手势,在您声明它们之后和将它们添加到滚动视图之前

 [subview addGestureRecognizer:longPress]; 
于 2013-04-08T03:29:07.533 回答
0

哇哦,它有效!

问题是:

imgContainer 是一个带有空框架的 UIView,其中有几个 UIImageViews 作为子视图

的印象是,当我向 imgContainer 添加子视图时,imgContainer 会展开

不是真的

我必须将 imgContainer 的框架设置为与滚动视图相同的内容框架,然后一切正常。

我希望这个答案可以帮助像我这样的任何其他未来的 iOS 第一计时器。

于 2013-04-08T07:09:02.253 回答