在过去的四个小时里,我尝试了许多 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
但是,如果我用滚动的任何子视图替换滚动,则长按事件永远不会触发。
- 如何检测长按滚动视图的子视图?
- 这是一个相当混乱的黑客,但是,因为我可以检测到滚动视图的长按,有没有什么方法可以检测到按下的位置,以便我可以看到正在按下哪个特定的子视图。
另外,(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 仍然不起作用。:(