如何将FooterInSection保持在底部,UITableView

时间:2015-03-25 12:11:10

标签: ios objective-c iphone xcode uitableview

这是我无人居住的UITableView的样子:

https://www.dropbox.com/s/0jkbct6bq5ty3r8/photo%201.PNG?dl=0

如果我滚动得足够,这会发生在页脚上:

https://www.dropbox.com/s/cq4w1wcupxtad57/photo%202.PNG?dl=0

当我向下滚动时,您可以看到页脚正在跟进。当tableview被填充更多单元格时,滚动量明显减少,这使得这种情况更频繁地发生。无论如何都要保持它,因为它始终在第一张图片中看起来?

我用于页脚的代码如下所示:

-(UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section
{
    UIView* view = [UIView new];
    [view setBackgroundColor:[UIColor grayColor]];
    return view;
}

-(CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section
{
    return 1.0f;
}

0 个答案:

没有答案