ScrollView not scrolling when dragging on buttons(拖动按钮时ScrollView不滚动)
问题描述
我有一个滚动视图,当它上面没有按钮时会滚动.现在确实如此,并且当拖动鼠标(在模拟器上)时,什么也没有发生(我认为是因为按钮被按下了).我怎样才能做到这一点?
I have a scroll view that used to scroll when it didn't have buttons all over it. Now it does, and when dragging the mouse (on simulator) nothing happens (i think because the buttons are being pushed). How can I make this right?
推荐答案
发生这种情况是因为 UIScrollView
的 UIButton
子视图(我假设按钮作为子视图添加到您的case) 正在跟踪触摸而不是滚动视图.UIScrollView
方法 touchesShouldCancelInContentView
是这里的关键.根据其描述:如果view不是UIControl
对象,则默认返回YES;否则返回NO
.",即对于UIControl
对象(按钮),UIScrollView
不会尝试取消阻止滚动的触摸.
This is happening because UIButton
subviews of the UIScrollView
(I assume buttons are added as subviews in your case) are tracking the touches and not the scroll view. UIScrollView
method touchesShouldCancelInContentView
is the key here. According to its description: "The default returned value is YES if view is not a UIControl
object; otherwise, it returns NO
.", i.e. for UIControl
objects (buttons), UIScrollView
does not attempt to cancel touches which prevents scrolling.
所以,要允许使用按钮滚动:
So, to allow scrolling with buttons:
- 确保
UIScrollView
属性canCancelContentTouches
设置为YES
. - 子类
UIScrollView
并覆盖touchesShouldCancelInContentView
以在内容视图对象是UIButton
时返回YES
,如下所示:
- Make sure
UIScrollView
propertycanCancelContentTouches
is set toYES
. - Subclass
UIScrollView
and overridetouchesShouldCancelInContentView
to returnYES
when content view object is aUIButton
, like this:
- (BOOL)touchesShouldCancelInContentView:(UIView *)view
{
if ( [view isKindOfClass:[UIButton class]] ) {
return YES;
}
return [super touchesShouldCancelInContentView:view];
}
这篇关于拖动按钮时ScrollView不滚动的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:拖动按钮时ScrollView不滚动
基础教程推荐
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01