Reputation: 821
At first I've added to my Storyboard
an UITableView
, later inside of it I've added UIView
Now after running my app when I'm trying to scroll my tableView by dragging UIView
to top(touching on UIView
and trying to scroll) - it does not scroll, but when I scroll by dragging from tableView - it scrolls.
How can I fix it and scroll by touching and scrolling over those UIView
?
Upvotes: 0
Views: 134
Reputation: 4825
Make sure that you have checked 'cancellable content touches' of UITableview as below
Upvotes: 1