删除iOS7中单元格的边框

时间:2013-12-13 09:28:53

标签: ios objective-c uitableview

我需要使UITableViewCell / iOS7只有一个iOS6完全透明的背景。

我做了什么:

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"ButtonsCell" forIndexPath:indexPath];
cell.backgroundColor = [UIColor clearColor];
cell.backgroundView = [UIView new];
cell.selectedBackgroundView = [UIView new];
cell.selectionStyle = UITableViewCellSelectionStyleNone;
return cell;

我得到了什么:

在iOS6中

一切正常:

enter image description here

但在iOS7中有两条水平灰线:

enter image description here

是否可以删除它们?..

1 个答案:

答案 0 :(得分:0)

tableView.separatorColor = [UIColor clearColor];