1、在开发过程中遇到无法修改UITableView背景色和cell背景色,均想修改为clearColor
2、修改成功的方法
-(void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath
{
tableView.backgroundColor = [UIColor clearColor];
cell.backgroundColor = [UIColor clearColor];
}
记录一下,开发中遇到的问题
网友评论