谁能解释?
我的 ViewController 带有 TableView 。我想将图像的另一种背景颜色设置为 ViewController 的查看,例如:self.view.backgroundColor = someColor
,这没关系。但当我将 TableView 拉下来时,在 UITableViewWrapperView 层次结构中出现了一些 UIView :
拉下来:
我尝试做的事情:
tableView.backgroundColor = UIColor.clear // doesn't work
tableView.backgroundView?.backgroundColor = UIColor.clear // doesn't work
tableView.subviews.first?.backgroundColor = UIColor.clear // doesn't work
答案 0 :(得分:0)
来自 UISearchController 的 UIView ...