UITapGestureRecognizer on UILabels in subview of UIScrollView not working(UIScrollView子视图中UILabels上的UITapGestureRecognizer不起作用)
问题描述
我的 UIScrollView 的内容视图中的 UITapGestureRecognizer 上的 UITapGestureRecognizer 没有调用它的方法.
I have a problem where my UITapGestureRecognizer on my UILabels in a content view in my UIScrollView is not calling it's methods.
视图层次结构如下:
- 滚动视图(UIScrollView)
- 内容视图(UIView)
- testLabel (UILabel) - 这里是 UITapGestureRecognizer 的附加位置
我已将代码提炼成一个示例来突出问题
I have distilled the code down to an example to highlight the problem
// Set scrollview size - Added in Storyboad [scrollView setContentSize:CGSizeMake([arrayOfVerbs count]*self.view.frame.size.width, scrollView.contentSize.height)]; [scrollView setCanCancelContentTouches:YES]; // Tried both yes and no [scrollView setPagingEnabled:YES]; // Add content view UIView *contentView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, scrollView.contentSize.width, scrollView.contentSize.height)]; [scrollView addSubview:contentView]; // Add test UILabel UILabel *testLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 200, 100)]; [testLabel setBackgroundColor:[UIColor redColor]]; [testLabel setText:@"Test touch"]; [testLabel setUserInteractionEnabled:YES]; [contentView addSubview:testLabel]; // Add gesture recogniser UITapGestureRecognizer *singleTap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(playSound:)]; singleTap.numberOfTapsRequired = 1; [testLabel addGestureRecognizer:singleTap];
这是点击手势识别器应该调用的方法
And this is the method that the tap gesture recogniser should call
- (void)playSound:(UITapGestureRecognizer *)sender { NSLog(@"play sound"); if(sender.state == UIGestureRecognizerStateEnded) { int pronounNumber = [sender.view tag]; int exampleNumber = (int)sender.view.frame.origin.x%(int)self.view.frame.size.width; NSLog(@"Pronoun is %i and example is %i", pronounNumber, exampleNumber); } }
当我尝试触摸 UILabel 时,从未调用此方法.
This method is never called when I tried to touch on the UILabel.
我已尝试按照此 线程,但它仍然无法正常工作.
I have tried setting the property canCancelContentTouches to both YES and NO on the scroll view as suggested by this thread, but it's still not working.
奇怪的是,如果我在 scrollView 之外添加一个 UILabel,那么手势识别器就会起作用!所以问题只出现在我的 contentView 中,它是我的 scrollView 的子视图.
The strange thing is, if I add a UILabel outside of the scrollView, then the gesture recogniser works! So the problem only occurs in my contentView which is a subview of my scrollView.
我正在使用自动布局,如果这有什么不同吗?
I am using auto-layout, if that might be any difference?
谢谢!
推荐答案
滚动视图也有手势识别器.默认情况下,任何时候只有 1 个手势识别器可以处理触摸.您需要让自己成为手势的代表,然后实现
gestureRecognizer:shouldRecognizeSimultaneouslyWithGestureRecognizer:
以返回YES
.这将允许它与滚动视图同时工作.The scroll view also has a gesture recogniser. By default, only 1 gesture recognizer can be handling touches at any one time. You need to make yourself the delegate of your gesture and then implement
gestureRecognizer:shouldRecognizeSimultaneouslyWithGestureRecognizer:
to returnYES
. This will allow it to work at the same time as the scroll view.这篇关于UIScrollView子视图中UILabels上的UITapGestureRecognizer不起作用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
- 内容视图(UIView)
本文标题为:UIScrollView子视图中UILabels上的UITapGestureRecognizer不
基础教程推荐
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01