iOS开发UITableView背景色和cell背景色
2021-03-18 本文已影响0人
Flynn_Lee
1、在开发过程中遇到无法修改UITableView背景色和cell背景色,均想修改为clearColor
2、修改成功的方法
-(void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath
{
tableView.backgroundColor = [UIColor clearColor];
cell.backgroundColor = [UIColor clearColor];
}
记录一下,开发中遇到的问题