我已成功删除了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部分中的页脚被抽取?