UITableViewCell clear background - Grouped UITableView

后端 未结 6 1296
无人共我
无人共我 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:28

    Clearing the background in the cellForRowAtIndex method should work

    [cell setBackgroundColor:[UIColor clearColor]];
    

    try also to clear the background in the viewWillAppear and if something weird happens, clear the project and rebuild.

提交回复
热议问题