TableView页脚不滚动内容

时间:2014-04-24 03:15:46

标签: ios uitableview uikit

在我的应用程序中,我在tableview(tableview.tablefooterview)的页脚中有一个视图,它不会滚动内容。 crappy

无论我做什么,都会因为增加一个细胞而被推倒。 这是初始化代码:

  CGRect footerRect = CGRectMake(0, 0, 320, 200);
footerview2.frame = footerRect;

self.tableView.backgroundColor = self.footerview.backgroundColor;
self.tableView.tableFooterView = footerview2;

2 个答案:

答案 0 :(得分:2)

尝试添加部分页脚。实现tableview委托:

-(UIView *) tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section{
    return footerview2;
}

答案 1 :(得分:2)

在视图控制器中添加此方法

- (CGFloat) tableView : (UITableView  *) tableView heightForFooterInSection : ( NSInteger ) section