请问如何自定义UITableViewCell的背景颜色
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了请问如何自定义UITableViewCell的背景颜色相关的知识,希望对你有一定的参考价值。
我想要在应用中自定义UITableViewCell的背景颜色,应该如何做呢?有程序么?
参考技术A cell.backgroundColor = [UIColor xxxColor];但是有个问题,cell的背景不是直接设置的,而是以第一个cell的背景颜色为基础,所以要修改第一个cell的背景颜色。 int backgoudViewIndex = 8888; [[cell.subviews objectAtIndex:0]setTag:backgoudViewIndex]; NSInteger row1=[indexPath row]; UIView*backgoudView=[cell viewWithTag:backgoudViewIndex]; if(0==(row1%2)) backgoudView.backgroundColor = [UIColor whiteColor]; else backgoudView.backgroundColor = [UIColor colorWithRed:239.0/255.0 green:241.0/255.0 blue:245.0/255.0 alpha:1];以上是关于请问如何自定义UITableViewCell的背景颜色的主要内容,如果未能解决你的问题,请参考以下文章
如何在 Swift 中以编程方式更改自定义 UITableViewCell 中按钮的背景颜色?
如何更改 UITableViewCell 编辑按钮背景颜色?