ios 8 - buttons in horizontal scroll view intercepting pan event - scroll does not work

后端 未结 5 1246
刺人心
刺人心 2020-11-28 06:28

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

5条回答
  •  清歌不尽
    2020-11-28 06:34

    I've had this problem with a UITableView which has custom UITableViewCells with UIButtons on it. I put this in my UITableview class.

    - (BOOL)touchesShouldCancelInContentView:(UIView *)view {
        return YES;
    }
    

    Solved my problem.

    EDIT: Just to clearify, you can create a subclass of UIScrollview and add this to solve the problem.

提交回复
热议问题