我想达到一种效果,其中表格视图的一个单元格将具有蓝色背景,下一个将具有白色,下一个将再次具有蓝色,然后是白色等等...您能告诉我吗?我怎样才能做到这一点?
感谢。
答案 0 :(得分:73)
将此方法添加到表视图委托:
#pragma mark UITableViewDelegate
- (void)tableView: (UITableView*)tableView
willDisplayCell: (UITableViewCell*)cell
forRowAtIndexPath: (NSIndexPath*)indexPath
{
cell.backgroundColor = indexPath.row % 2
? [UIColor colorWithRed: 0.0 green: 0.0 blue: 1.0 alpha: 1.0]
: [UIColor whiteColor];
cell.textLabel.backgroundColor = [UIColor clearColor];
cell.detailTextLabel.backgroundColor = [UIColor clearColor];
}
答案 1 :(得分:43)
您必须设置单元格内容视图的背景颜色
cell.contentView.backgroundColor = [UIColor colorWithRed...]
这将设置整个单元格的背景。
要对备用单元格执行此操作,请使用indexPath.row
和%
乘以2。
答案 2 :(得分:9)
如果要根据实际单元格数据对象中的某个状态设置单元格颜色,则这是另一种方法:
如果将此方法添加到表视图委托:
- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {
cell.backgroundColor = cell.contentView.backgroundColor;
}
然后在你的cellForRowAtIndexPath方法中你可以这样做:
if (myCellDataObject.hasSomeStateThatMeansItShouldShowAsBlue) {
cell.contentView.backgroundColor = [UIColor blueColor];
}
这样可以节省必须在willDisplayCell方法中再次检索数据对象。
答案 3 :(得分:5)
请在cellForRowAtIndexPath
中添加以下代码if (indexPath.row % 2 == 0){
cell.backgroundColor =[UIColor blueColor];
} else {
cell.backgroundColor =[UIColor whiteColor];
}
我认为这会对你有所帮助
答案 4 :(得分:4)
只要您不使用UITableViewCell的内置标签,lostInTransit的答案中的cell.contentView.backgroundColor = [UIColor colorWithRed...]
方法就可以正常工作。
我发现如果您使用内置标签,例如通过设置cell.text
,您最终会在标签下面出现一个不透明的白色块,并且只有单元格的两端显示您想要的颜色。
我发现无法编辑内置标签,因此它不是非透明的(您可以通过UILabel* cellLabel = [cell.contentView.subviews objectAtIndex:0]
访问它。)
我通过添加自己的自定义UILabel
解决了这个问题。像这样:
UILabel* cellLabel = [[[UILabel alloc] initWithFrame:cell.frame] autorelease];
cellLabel.text = @"Test with non-opaque label";
cellLabel.backgroundColor = [UIColor clearColor];
cellLabel.opaque = NO;
[cell.contentView addSubview:cellLabel];
cell.contentView.backgroundColor = [UIColor darkGrayColor];
答案 5 :(得分:3)
使用默认表格单元格设置时,以下两个属性将为单元格的背景和标签的背景颜色着色,从而无需创建自定义标签作为单元格contentView的子视图。
cell.textLabel.backgroundColor = [UIColor redColor];
cell.contentView.backgroundColor = [UIColor redColor];
答案 6 :(得分:3)
//节省时间的方法:
//在索引方法的单元格中:
static NSString* evenIdentifier = @"even";
static NSString* oddIdentifier = @"odd";
__weak identifier;
if(indexPath.row %2 ==0)
{
identifier = evenIdentifier;
}else{
identifier = oddIdentifier;
}
cell = dequeue..WithIdentifier: identifier;
if(cell == nil){
cell = allocOrLoadNib...;
cell.backgroundColor = (indexPath.row %2 ==0 ? evenColor : oddColor);
}
//更改单元格内容然后返回它。轻松工作。
//这是大纲代码。请不要直接复制。
答案 7 :(得分:3)
这对我有用..在cellForRowAtIndexPath中,
cell.textLabel.backgroundColor = [UIColor clear];
cell.detailTextLabel.backgroundColor = [UIColor clearColor];
cell.contentView.backgroundColor = [UIColor grayColor]; //whichever color u want
cell.backgroundColor = cell.contentView.backgroundColor;
对于您的要求,如前所述,基于indexPath%2值,您可以执行上述功能。
答案 8 :(得分:2)
对于使用内置文本标签并且不希望文本标签的白色背景颜色遮挡背景颜色的情况,此代码是一种稍微干净的解决方案。这也解决了违反表视图分组样式的圆角的问题(当您使用cell.contentView.backgroundColor而不是cell.backgroundColor时会发生这种情况):
UITableViewCell *cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
cell.backgroundColor = [UIColor redColor];
cell.textLabel.backgroundColor = [UIColor clearColor]; //transparent background
答案 9 :(得分:0)
UIView *bg = [[UIView alloc] initWithFrame:cell.frame];
bg.backgroundColor = [UIColor colorWithRed:175.0/255.0 green:220.0/255.0 blue:186.0/255.0 alpha:1];
cell.backgroundView = bg;
[bg release];
答案 10 :(得分:0)
您需要做的就是在表的视图控制器实现文件中添加以下代码。
- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {
if (indexPath.row%2 == 0) {
UIColor *altCellColor = [UIColor blackColor];
cell.backgroundColor = altCellColor;
}}
然后就像添加和更改模数值一样简单。
答案 11 :(得分:0)
将backgroundView
添加到单元格并设置您选择的背景颜色。
let backgroundView = View() // add background view via code or via storyboard
view.backgroundColor = UIColor.red // your color
cell.backgroundView = backgroundView