UITableView分区时的清除背景颜色

在ios6.0以上用这个方法清除背景颜色

[tableView setBackgroundView:nil];  

在ios6.0一下用这个方法清除背景颜色

tableView.backgroundColor = [UIColor clearColor];


你可能感兴趣的:(UITableView分区时的清除背景颜色)