Reputation: 191
I've got a UITableView in a UIView in a UIScrollView.
My problem is, when i scroll the tableview and it bounces, the scrollview bellow also bounces and i can see the background of the app which would be below the green UIScrollView. Other than that, the tableview scrolls just fine inside the scrollview.
How can i fix this? Cheers
Upvotes: 0
Views: 1719
Reputation: 80271
You should disable bouncing for what you do not want to bounce. (Also a good life motto.)
self.scrollView.bounces = NO;
Upvotes: 0