I have a horizontal scrollView with a lot of buttons inside but none of them responding. The scrollview works well.
Here is how my scrollview is declared, pretty standard :
_slotsScrollView = [UIScrollView new];
_slotsScrollView.pagingEnabled = YES;
_slotsScrollView.showsHorizontalScrollIndicator = NO;
_slotsScrollView.showsVerticalScrollIndicator = NO;
_slotsScrollView.delaysContentTouches = NO;
_slotsScrollView.canCancelContentTouches = YES;
The scrollview contains one main view which contains all the buttons, the structure is this one :
--UIScrollView
----UIView
----UIButton
----UIButton
----UIButton ...
I've already try a lot of tricks (see here or here) but none of them have solved my problem, any idea ?