I have a problem that when I try to add my Gesture Recognizer to many sliders using:
UIGestureRecognizer *sliderTap = [[[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(sliderTapped:)] autorelease];
[slider addGestureRecognizer:sliderTap];
[slider2 addGestureRecognizer:sliderTap];
...
Only the last one is applied in the app. I have up to 10 sliders on the screen at one time. Is there a way I can make one UIGestureRecognizer apply to them all?