欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

如何设置自定义cell 选中 时的 背景 颜色

程序员文章站 2022-07-13 16:35:44
...

在-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{}方法中.

ServiceCell *cell = [tableView dequeueReusableCellWithIdentifier:purchaseServiceCellID forIndexPath:indexPath];
cell.ViewBack.backgroundColor = [UIColor redColor];

1.系统默认的颜色设置
//[无色] cell.selectionStyle = UITableViewCellSelectionStyleNone;
//蓝色 cell.selectionStyle = UITableViewCellSelectionStyleBlue;
//灰色 cell.selectionStyle = UITableViewCellSelectionStyleGray;
2.自定义颜色和背景设置改变UITableViewCell选中时背景色:UIColor *color = [[UIColoralloc]initWithRed:0.0green:0.0blue:0.0alpha:1];//通过RGB来定义自己的颜色 cell.selectedBackgroundView = [[[UIView alloc] initWithFrame:cell.frame] autorelease]; cell.selectedBackgroundView.backgroundColor = [UIColor xxxxxx];
3.自定义UITableViewCell选中时背景cell.selectedBackgroundView = [[[UIImageView alloc] initWithImage:[UIImage imageNamed:@"cellart.png"]] autorelease]; 还有字体颜色 cell.textLabel.highlightedTextColor = [UIColor xxxcolor]; [cell.textLabel setTextColor:color]
4.设置tableViewCell间的分割线的颜色[theTableView setSeparatorColor:[UIColor xxxx ]];

摘要设置UITableViewCell的背景色透明方法:
cell.backgroundColor=[UIColor clearColor];
设置UITableViewCell的选中背景颜色的方法:
UIView *view = [[UIView alloc]init]; view.backgroundColor=[UIColor redColor]; cell.selectedBackgroundView=view;

1.设置UITableViewCell的背景色透明:
设置UIColor为clearColor:
cell.backgroundColor=[UIColor clearColor];

或者,设置颜色透明度为0:

cell.backgroundColor = [UIColor colorWithWhite:0.0f alpha:0.0f];

2.设置UITableViewCell的选中背景颜色的方法:
UIView *view = [[UIView alloc]init];
view.backgroundColor=[UIColor redColor];
cell.selectedBackgroundView=view;

附,设置UITableViewCell的选中字体颜色的方法:
cell.selectedTextColor=[UIColor blackColor];//默认显示为白色

(但是这段代码会产生一个警告,'selectedTextColor' is deprecated : first deprecated in iOS 3.0,
苹果表示已不建议使用。)