I have a UITableView inside vertically scrolled (with paging enabled) UIScrollView. I don't like the default behaviour and I would like to change it:
- by default when
UITableViewis scrolled to top or bottom (one of the edges) the vertical drag up (when at bottom) or vertical drag down (when at top) is propagated to parentUIScrollView.
Is there any way I could prevent this kind of a behaviour? I would like to stop propagation whenever the drag finger move is started in UITableView frame.
I was looking at Apple notes about nested UIScrollViews but couldn't find any useful information there.