滚动到底部时,只有最后一个tableview单元格的一半可见

时间:2011-08-22 10:20:22

标签: iphone objective-c uitableview scroll

我有一个tableview,当我滚动到它的底部并释放我的手指时,只有一半的单元格可见。如果我继续向底部拖拽整个单元格,然后在我松开手指时隐藏。

enter image description here

有什么想法吗?

1 个答案:

答案 0 :(得分:0)

tableView的框架似乎设置为错误的框架。像这样重置帧:

CGRect tableViewFrame = [tableView frame];
tableViewFrame.size.height -= heightOfButtonBar;
tableViewFrame.origin.y += heightOfButtonBar;
[tableView setFrame: tableViewFrame];