IOS-UITableView更改背景以及UITabelViewCell更改背景

来源:互联网 发布:caffe python 数据层 编辑:程序博客网 时间:2024/05/22 06:51

修改UITableView背景

[_mTableView setBackgroundColor:[UIColor colorWithPatternImage:[UIImage imageNamed:@"5.jpg"]]];


修改UITableViewCell背景

cell.backgroundView = [[UIImageView alloc]initWithImage:[UIImage imageNamed:@"3.jpg"]]; //cell的背景图

除此之外,还需要将cell的文字背景设为透明

[cell.textLabel setBackgroundColor:[UIColor clearColor]];//文字背景透明

这样就实现了具体的效果、如下:


IOS-UITableView更改背景以及UITabelViewCell更改背景 - 柠檬加冰 - 柠檬加冰的博客
 


0 0
原创粉丝点击