码迷,mamicode.com
首页 > 其他好文 > 详细

设置 tableview 的背景 颜色 和清空

时间:2016-04-09 10:26:45      阅读:118      评论:0      收藏:0      [点我收藏+]

标签:

表示图中Cell默认是不透明的,那么在设置表示图的背景颜色和图片时通常是看不到的

 

 

1.给tableView设置背景view 

  UIImageView *backImageView=[[UIImageViewalloc]initWithFrame:self.view.bounds]; 

   [backImageView setImage:[UIImage imageNamed:@"liaotianbeijing"]]; 

    self.tableView.backgroundView=backImageView; 

[self.view addSubView:backImageView];

   

2.让cell透明 

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

       

    

   MyCell  *cell = [tableViewdequeueReusableCellWithIdentifier:@"METext"forIndexPath:indexPath]; 

    cell.backgroundColor=[UIColor clearColor];//关键语句 ,设置背景为透明的

    [cell setCellInfo:dic];//自定义类目方法 

     return cell; 

       

}

设置 tableview 的背景 颜色 和清空

标签:

原文地址:http://www.cnblogs.com/meixian/p/5370861.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!