Reputation: 9419
When I drag past the top or end of my tableview, I get to a blank white screen. How do I prevent my tableview from scolling past the first or last cell?
Upvotes: 1
Views: 1265
Reputation: 385540
You can turn off the bounces
property of your table view in Interface Builder or in code. But doing so is a very bad idea.
Upvotes: 7