iOS 6/7 tabbleview 的背景颜色

iOS 7 的背景设置透明:


-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath

{

    cell.backgroundColor = [UIColorclearColor];//iOS 7之后就是这样实现tabbleview的背景色为透明

    

   return cell;

}


iOS 6 的背景设置透明:

backgroundView 属性不为nil,所有设置backgroundColor 没有意义

myTableView.backgroundView = nil;

myTableView.backgroundColor = [UIColor clearColor];


你可能感兴趣的:(iOS 6/7 tabbleview 的背景颜色)