John Doe
John Doe

Reputation: 821

Scrolling issue in UITableView with the UIView in it

At first I've added to my Storyboard an UITableView, later inside of it I've added UIView

enter image description here

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.

enter image description here

How can I fix it and scroll by touching and scrolling over those UIView?

Upvotes: 0

Views: 134

Answers (1)

Aruna Mudnoor
Aruna Mudnoor

Reputation: 4825

Make sure that you have checked 'cancellable content touches' of UITableview as below

enter image description here

Upvotes: 1

Related Questions