如何将以下代码转换为swift以使UITableView Background透明。
self.tableView.backgroundView = nil;
在Objective-C中我们设置了backgroundView = nil,但在快速工作中以不同的方式设置了nil。?
任何解决方案?请。
答案 0 :(得分:2)
self.tableView.backgroundColor = UIColor.clearColor()
答案 1 :(得分:0)
尝试一下
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "CustomCell", for: indexPath)
cell.backgroundColor = .clear
return cell
}