Vadoff
Vadoff

Reputation: 9419

How do I stop scrolling/dragging past the bounds of my UITableView?

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

Answers (1)

rob mayoff
rob mayoff

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

Related Questions