首页 > 代码库 > 设置tableViewCell的背景颜色

设置tableViewCell的背景颜色

- (void)tableView: (UITableView*)tableView willDisplayCell: (UITableViewCell*)cell forRowAtIndexPath: (NSIndexPath*)indexPath{    cell.backgroundColor = indexPath.row % 2?[UIColor colorWithRed: 240.0/255 green: 240.0/255 blue: 240.0/255 alpha: 1.0]: [UIColor whiteColor];    cell.textLabel.backgroundColor = [UIColor clearColor];    cell.detailTextLabel.backgroundColor = [UIColor clearColor];}

 

 

设置tableViewCell的背景颜色