我的tableView的backgroundColors之一遇到了一个奇怪的问题,它在iOS 9.2中看起来很糟糕?
我试图通过SB和代码设置backgroundColor:
cell.contentView.backgroundColor = [UIColor colorWithRed: 22.0/255
green: 35.0/255
blue: 55.0/255
alpha: 1.0];
cell.accessoryView.backgroundColor = [UIColor colorWithRed: 22.0/255
green: 35.0/255
blue: 55.0/255
alpha: 1.0];
在iOS 10中工作正常吗?思考?我想删除tableView中的所有白色背景内容以使其具体...
答案 0 :(得分:1)
Animal
或强>
cell.backgroundColor=[UIColor clearColor];// in table view cell
tableView.backgroundColor = "your color" // in view did load
或强>
- (void) tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath
{
cell.backgroundColor = "your color";
}