tableView cell 选中颜色的改变

来源:互联网 发布:错生网络剧1 20集资源 编辑:程序博客网 时间:2024/06/10 04:25

1.系统默认的颜色设置

1 //无色2 cell.selectionStyle=UITableViewCellSelectionStyleNone;3 //蓝色,也就是系统默认的颜色4 cell.selectionStyle=UITableViewCellSelectionStyleBlue;5 //灰色6 cell.selectionStyle=UITableViewCellSelectionStyleGrap;

2.自定义UITableViewCell选中后的背景颜色和背景图片

复制代码
1 UIColor* color=[[UIColor alloc]initWithRed:0.0 green:0.0 blue:0.0 alpha:1];//通过RGB来定义颜色2 cell.selectedBackgroundView=[[UIView alloc]initWithFrame:cell.frame]autorelease];3 cell.selectedBackgroundView.backgroundColor=[UIColor   ***]或color;4 5 自定义选中后的背景图片6 cell.selectedBackgroundView=[[[UIImageView alloc]initWithImage:[UIImage imageNamed:@"123.png"]]autorelease];7 设置UITableViewCell中的字体颜色时用8 cell.textLabel.highlightedTextColor=[UIColor **color];
复制代码

3.定义UITableViewCell的样式

  

cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;

0 0
原创粉丝点击