Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

UITableView Cannot be Scrolled all the way to the bottom [closed]

I am just curious. I make a few UITableView. In all cases, if I scroll all the way to the bottom it bounce up again.

So lower portion of the table cannot be accessed. How should I fix this?

I mean exactly that I asked. One of the solution is that the table size is not right.

And that is exactly the problem. I have to simulate the size for the toolbar below.

Thank you for those who answer. No thanks for those who close this good question.

like image 985
user4951 Avatar asked Jun 20 '11 08:06

user4951


1 Answers

It seems your tableView's frame height is exceeding the visible area. Decrease the tableView's frame height to be inside the visible area. You will see everything.

like image 196
EmptyStack Avatar answered Oct 08 '22 01:10

EmptyStack