iOS tableview 背景变透明
// 这里使用编写一个简单地例子 // iTableView为UITableView的一个实例j // Cell为自定义UITableViewCell的一个实例 // 将tableView背景色设置为透明 iTableView.backgroundView = nil; iTableView.backgroundColor = [UIColor clearColor]; // 将cell和cell.textLabel的背景色全都设置为透明 cell.textLabel.backgroundColor = [UIColor clearColor]; cell.backgroundColor = [UIColor clearColor]; // 使用自己定义的背景色 self.view.backgroundColor = [UIColor ...]; // 或者为UITableView设置一个背景色,两者效果是有区别的,请选择需要的方案 iTableView.backgroundColor = [UIColor ...];