博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ios UITableView背景图片设置
阅读量:5290 次
发布时间:2019-06-14

本文共 967 字,大约阅读时间需要 3 分钟。

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{    UITableViewCell *cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue2 reuseIdentifier:nil];        // 设置cell右边指示器的类型    if (indexPath.row % 2 == 0) {        cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;    }        cell.accessoryType = UITableViewCellAccessoryDetailDisclosureButton;    cell.accessoryView = [[UISwitch alloc] init];        // 设置背景(背景view不用设置尺寸, backgroundView的优先级 > backgroundColor)    UIImageView *bgView = [[UIImageView alloc] init];    bgView.image = [UIImage imageNamed:@"buttondelete"];//    bgView.backgroundColor = [UIColor redColor];    cell.backgroundView = bgView;        UIView *selectedbgView = [[UIView alloc] init];    selectedbgView.backgroundColor = [UIColor greenColor];    cell.selectedBackgroundView = selectedbgView;    return cell;}

 

转载于:https://www.cnblogs.com/zqrios/p/7442580.html

你可能感兴趣的文章
Uber中国在地方城市的人员架构是怎样的?
查看>>
再来一篇装逼老文章:屏幕传输算法
查看>>
Delphi 7下最小化到系统托盘
查看>>
抖动代码
查看>>
lsblk请参阅块设备
查看>>
SVM-SVM概述
查看>>
STL algorithm算法lower_bound和upper_bound(31)
查看>>
linux系统下怎么安装.deb文件?
查看>>
javascript常见编程模式举例
查看>>
列出man手册所有函数的方法
查看>>
[从jQuery看JavaScript]-匿名函数与闭包(Anonymous Function and Closure)【转】
查看>>
VisualStudio 常用快捷键-整理
查看>>
netty研究【1】:编译源代码
查看>>
GTK接口定义和实现
查看>>
Hadoop生态系统介绍
查看>>
uva 11468 Substring
查看>>
SoapUI、Jmeter、Postman三种接口测试工具的比较分析
查看>>
Android平台实现与Apache Tomcat服务器数据交互(MySql数据库)
查看>>
Cout vs printf---缓存与引用,流处理顺序(转ithzhang,知乎郝译钧)
查看>>
排座椅(seat)
查看>>