i want to fire a timer as user slides the slider when the touch ends. is there a way to handle touch events of uislider?
+1
A:
Make sure your slider's continuous
property is set to YES
; then use -addTarget:action:forControlEvents:
with... UIControlEventValueChanged
?... in the usual way. The slider should continuously call whatever action method you give it.
Noah Witherspoon
2009-10-08 06:38:01
i know this method.i just want to fire timer when user stopped dragging the slider
Shweta Simply
2009-10-08 09:00:00
Try `UIControlEventEditingDidEnd`, then.
Noah Witherspoon
2009-10-08 14:31:29