美文网首页
iOS开发UITableView背景色和cell背景色

iOS开发UITableView背景色和cell背景色

作者: Flynn_Lee | 来源:发表于2021-03-18 13:39 被阅读0次

1、在开发过程中遇到无法修改UITableView背景色和cell背景色,均想修改为clearColor
2、修改成功的方法

-(void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath
{
    tableView.backgroundColor = [UIColor clearColor];
    
    cell.backgroundColor = [UIColor clearColor];
}

记录一下,开发中遇到的问题

相关文章

网友评论

      本文标题:iOS开发UITableView背景色和cell背景色

      本文链接:https://www.haomeiwen.com/subject/dswucltx.html