I have a (vertical) UISlider inside a UIScrollview. I'd like to be able to change the value of the slider, and, without lifting my finger, scroll the scrollview left or right.
Desired behavior:
Touch down inside vertical UISlider, followed by a finger drag left or right causes the scrollview to scroll
Actual behavior:
Touch down inside vertical UISlider, followed by a finger drag left or right causes no movement in UIScrollview. A touch down outside the UISlider followed by a drag will scroll the scrollview as expected
UIView has a property called exclusiveTouch which seems as if it might be related to my problem. I tried setting it to NO, with no luck.
So, how can is set up my UISliders so that the scrollview beneath them will respond to touches which originate inside the UISliders?
Have you tried subclassing
UIScrollView
and implementing- (BOOL)touchesShouldCancelInContentView:(UIView *)view
? According to the Apple documentation:If you simply return
NO
if theview
is yourUISlider
, this may do what you want, assuming yourUIScrollView
only scrolls horizontally. If this doesn't work, you likely will have to do custom touch handling (ie. overridingtouchesBegan:withEvent:
,touchesChanged:withEvent:
, etc.) for both yourUIScrollView
and yourUISlider
.What you are seeing is the intended behavior.
Each touch event only gets handled by one control. What
exclusiveTouch
does is actually to prevent other touch events from being delivered to other views.To do what are trying to do you would have to do some of the touch handling yourself. Passing the event to both your views. You could do either do it by implementing all the
touchesBegan:
,touchesMoved:
etc. methods and pass the events to both views. You can read more about that approach in the UIResponder documentation. Another approach is to do the event handling in a UIGestureRecognizer on the scroll view that hit tests the slider and updates the value of the slider using the y-delta. You can read more about gesture recognizers and event handling in the section about Gesture Recognizers in the Event Handling Guide for iOS.Side note:
Go to the Settings app and toggle a switch half way (for example the Airplane mode toggle) and then drag down. Nothing will happen. The rest of the OS behaves the same way. Are you sure that this is the interaction that you really want to do? Apps that behave differently often feel weird and unfamiliar.
You need to set delaysContentTouches as NO and prevent for UISlider objects to scroll, Check below code.
Your question confused me a bit. You are saying a vertical slider - but dragging left and right?
If you wish to scroll the scrollview when dragging the UISlider, the proper way to do so is
and
Hope this is what you want.
I think you can get some reference from this example in this example it is shown that how to cancel any touch or any gesture recognizers and apply them to other views.
May this lead you to the solution of your problem and if it will just let me know about it
Happy Codding :)