I have a horizontal scroll view with a line of buttons. The scroll view will not scroll unless I do an extremely fast swipe.
If I set the buttons to userInteractionE
I have same issue and I solved it by creating a subclass of UIScrollView and set it's cancelContentTouches value to TRUE and its working fine.
UIScrollView
cancelContentTouches
TRUE
- (BOOL)touchesShouldCancelInContentView:(UIView *)view { return YES; }
Hope it will work for you.