iOS tableView表视图设置背景图片

2018-07-20    来源:open-open

容器云强势上线!快速搭建集群,上万Linux镜像随意使用

经常遇到要给tableView设置背景图片的问题,但如果直接设置背景  backgroundView的话,背景图不会显示,原因是  tableView上的cell默认是不透明的颜色,所以解决方法是 让  cell透明即可:

    1.给tableView设置背景view  
      UIImageView *backImageView=[[UIImageViewalloc]initWithFrame:self.view.bounds];  
       [backImageView setImage:[UIImageimageNamed:@"liaotianbeijing"]];  
        self.tableView.backgroundView=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;  
          
    }  

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点!
本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。

上一篇:DES加密解密的PHP类

下一篇:二分法查找算法 顺序查找算法的PHP代码