我设法在加载数据时使我的UITableView行/单元变黑,时尚,我在行之间得到一条白线,这看起来很糟糕。如何使用和不使用数据使它们完全变黑?
这是我目前正在使用的代码
- (void)tableView:(UITableView *)tableView willDisplayCell:
(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {
cell.backgroundColor = [UIColor blackColor];
}
继承人得到的东西(剩下白线):(
答案 0 :(得分:4)
更改表格视图的分隔符样式。
yourTableView.separatorStyle = UITableViewCellSeparatorStyleNone;
您也可以在属性选项板上在Interface Builder中执行此操作。
- 为了清晰起见,请按照以下评论进行编辑 -
将整个tableView设置为黑色背景:
[yourTableView setBackgroundColor:[UIColor blackColor]];
这也可以在Interface Builder属性面板中完成。