我有一个tableview,当我滚动到它的底部并释放我的手指时,只有一半的单元格可见。如果我继续向底部拖拽整个单元格,然后在我松开手指时隐藏。
有什么想法吗?
答案 0 :(得分:0)
tableView的框架似乎设置为错误的框架。像这样重置帧:
CGRect tableViewFrame = [tableView frame];
tableViewFrame.size.height -= heightOfButtonBar;
tableViewFrame.origin.y += heightOfButtonBar;
[tableView setFrame: tableViewFrame];