UITableViewCell clear background - Grouped UITableView

后端 未结 6 1290
无人共我
无人共我 2021-02-10 21:45

I am trying to display my data in a grouped table as below :

\"enter

As you can

6条回答
  •  走了就别回头了
    2021-02-10 22:24

    Try

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

提交回复
热议问题