Subclass UIScrollView and override the method - (BOOL)touchesShouldCancelInContentView:(UIView *)view . Here is an example with which you can go through uibutton:
#import "scrollViewWithButtons.h" @implementation scrollViewWithButtons - (BOOL)touchesShouldCancelInContentView:(UIView *)view { return ![view isKindOfClass:[UISlider class]]; } @end
matzahboy
source share