答案 0 :(得分:0)
您可以使用
在tableView中添加分隔符视图 UIView* separatorLineView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 3)];/// change size as you need.
separatorLineView.backgroundColor = [UIColor whiteColor];// you can also put image here
[cell.contentView addSubview:separatorLineView];
然后给出背景颜色以查看然后检查separatorColor。
希望它有所帮助。