UITableView inside UIScrollView not receiving first tap after scrollling

前端 未结 14 1794
北海茫月
北海茫月 2020-11-29 04:31

Brief

I am having an issue with a UITableView inside a UIScrollView. When I scroll the external scrollView, the table<

14条回答
  •  离开以前
    2020-11-29 05:15

    The scrollview is trying to figure out whether the user's intention is to scroll or not, so it's delaying the initial touch on purpose. You can turn this off by setting delaysContentTouches to NO.

提交回复
热议问题