我有UITableView
并使用自定义UITableViewCell
在其中显示数据。我的问题是 - 我需要删除separation line
navigation bar
first cell
之间的plain table view
,正如我在附件中提到的那样。
这是我的代码:
UIView* separatorLineView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 1)];
separatorLineView.backgroundColor = [UIColor colorWithRed:229/255.0 green:229/255.0 blue:229/255.0 alpha:1.0];
[cell.contentView addSubview:separatorLineView];
你能告诉我如何删除这一行吗?感谢
答案 0 :(得分:0)
在- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
添加此行:
if (indexPath.row == 0) {
cell.separatorInset = UIEdgeInsetsMake(0.f, 0.f, 0.f, cell.bounds.size.width);
}