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
}