2

我的屏幕类似于: 在此处输入图像描述

我想删除 tableView 中最后一个“活动”单元格下面的分隔符(在这种情况下,“Kompozytorzy”下面的所有内容。我怎样才能删除这个分隔符?

我尝试在中自定义分隔符cellForRow:AtIndexPath:,但每次我更改它都会影响整个 tableView。

4

2 回答 2

5

这是只有几行的普通样式表视图的正常行为。一个简单的解决方案是提供一个空的表格页脚:

self.tableView.tableFooterView = [[UIView alloc] init];
于 2013-10-01T15:14:10.700 回答
1

这是 UITableView 中的默认行为,它用空行填充屏幕。

您可以做的是为您的表格设置一个空页脚:

- (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section
{        
    return [[UIView alloc] init];
}

或者:

[self.myTableView setTableFooterView:[[UIView alloc] init]];
于 2013-10-01T15:15:01.857 回答