我需要使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中一切正常:
但在iOS7中有两条水平灰线:
是否可以删除它们?..
答案 0 :(得分:0)
tableView.separatorColor = [UIColor clearColor];