Change background of a grouped UITableView

后端 未结 8 654
情歌与酒
情歌与酒 2020-12-31 01:16

I\'m having some trouble trying to change the background of a UITableView with groups.

_tableView.backgroundColor = [UIColor colorWithPatternImage:[UIImage i         


        
8条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2020-12-31 01:46

    Swift 4.2

    TO REMOVE BACKGROUND VIEW & COLOR

    tableView.backgroundView = nil
    tableView.backgroundColor = .clear
    

提交回复
热议问题