如何删除顶部单元分隔线

时间:2014-08-15 16:53:24

标签: objective-c uitableview

如何摆脱状态栏上方出现的分隔线?在截图中很难看到,所以我把它染成了红色。我尝试了下面的代码用于第一个单元格,但是没有用。

cell.separatorInset = UIEdgeInsetsMake(0.f, 0.f, 0.f, 0.0f);

enter image description here

1 个答案:

答案 0 :(得分:1)

实施tableView:viewForHeaderInSection:tableView:heightForHeaderInSection:

tableView:viewForHeaderInSection:中返回一个带有零的视图,即[UIView alloc] initWithFrame:CGRectZero]

tableView:heightForHeaderInSection:返回高度为0.01。

如果您在表格视图中有多个部分,请记住部分。