取消选择最后一行后,UITableview页脚会返回

时间:2014-07-08 19:43:24

标签: uitableview

我已成功删除了UITableView底部的彩色分隔符:

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

- (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section
{
    return [UIView new];
    //[[UIView alloc] initWithFrame:CGRectMake(0, 0, 0, 0)];
}

然而,当我取消选择最后一行时,页脚会再次被绘制。

如何防止第1部分中的页脚被抽取?

0 个答案:

没有答案