UITableViewCell clear background - Grouped UITableView

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

    I was facing the same problem. And got to know It has nothing to do with cell's background.

    The issue is with background of the tableview which causes this weird corners, So

    self.tableview.backgroundColor = [UIColor clearColor];
    

    in viewWillAppear will solve the issue :)

提交回复
热议问题