I would like to create a variable speed slider control on the iPhone. Basically I am using a UISlider control but I would like to add a second dimension to this control by detecting where the finger is in the current view.
E.G. A user can slide the control left and right, but I want to see where their finger is vertically in the view.
My issue is that when you are manipulating a slider control. The following function is not called.
- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event
so this means I cannot detect any touch events because I assume they are being sent to the slider? Anyone tried to do this? Or should I sub class UISlider. Hmmm.