UITableView 투명하게
1. viewDidLoad()
self.tableview.backgroundColor = UIColor.clear
2. UITableViewDelegate - willDisplay()
func tableView(_ tableView: UITableView, willDisplay cell: UITableViewCell, forRowAt indexPath: IndexPath) {
cell.backgroundColor = UIColor.clear
}
3. 셀 선택 시에도 투명하게
