How to Cancel Scrolling in UIScrollView

2019-02-04 17:43发布

I use UIScrollView to make large-sized (larger than 320px) UI on iPhone.

I made an instance of UIScrollView and added some subviews on it. The problem is that I want to enable scrolling only when user touches outside of subviews, stop scrolling when user touches one of subviews.

I read documents and tried to find samples but I can't find good hint. If you have any idea, please help me.

5条回答
来,给爷笑一个
2楼-- · 2019-02-04 17:49

The simplest way to do this is set delayContentTouches to NO for the scrollview. That way the default behaviour is set so that anything which is a UIControl will pass the touches on to the control immediately andeverything else will scroll.

查看更多
三岁会撩人
3楼-- · 2019-02-04 17:50

The property you're really interested in -- and I'm actually testing this out right now, because I have the same problem you do -- is canCancelContentTouches.

If the value of this property is NO, the scroll view does not scroll regardless of finger movement once the content view starts tracking.

If this doesn't give you the results you want, subclass UIScrollView and override the touchesShouldBegin:withEvent:inContentView method, which is what the accepted answer suggests.

查看更多
闹够了就滚
4楼-- · 2019-02-04 17:56

If you want to detect touches inside any of the subviews of the UIScrollView, you will have to subclass UIScrollView and override the touchesShouldBegin and touchesShouldCancelInContentView methods which are specifically created for this purpose.

Other than this, there is no way you can identify touches in the subviews as UIScrollView tends to handle all touches itself and doesn't pass them to its subviews.

All the best.

查看更多
Juvenile、少年°
5楼-- · 2019-02-04 18:04

UIScrollView has a scrollEnabled property that allows you to disable scrolling programatically. It also has a delegate (UIScrollViewDelegate) that allows you to see events such as scrolling starting/ending. Seems that you should be able to cook something up with those options combined in some way.

查看更多
冷血范
6楼-- · 2019-02-04 18:07

You can also sublcass UIScrollViewController and override the touchesBegan, touchesMoved and touchesEnded methods. If your implementation never calls the superclass implementation, then it won't scroll.

查看更多
登录 后发表回答