如何设置自定义cell 选中 时的 背景 颜色
在-(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,
苹果表示已不建议使用。)
上一篇: 移动开发-两栏自适应
下一篇: android CheckBox修改颜色
推荐阅读
-
iOS tableview自定义cell选中颜色,点击闪的问题
-
如何设置自定义cell 选中 时的 背景 颜色
-
python xlwt设置单元格的自定义背景颜色
-
Pycharm 设置自定义背景颜色的图文教程
-
Creo2.0怎么自定义背景? creo2.0背景颜色设置的方法
-
CAD渲染背景怎么自定义设置? cad设置背景颜色的教程
-
CSS如何设置选中文本的颜色_html/css_WEB-ITnose
-
python xlwt如何设置单元格的自定义背景颜色
-
为什么有些网站在用鼠标拖动选取文字或其他内容的时候,背景色不是默认的颜色?如何进行自定义?
-
CSS如何设置选中文本的颜色_html/css_WEB-ITnose