0

可能重复:
在 iPhone 上设置表格视图单元格的背景颜色
如何更改表格视图上的颜色替代单元格

我想要一个具有正常背景的单元格,而下一个具有一些很棒的背景的单元格,就像在这个屏幕截图中一样: 在此处输入图像描述 关于如何为无限数量的单元格实现这个漂亮和干净的任何想法?提前致谢!

4

1 回答 1

6

嘶嘶声:

-(UITableViewCell*)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    static NSString *CellIdentifier = @"Cell";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
    }

    if ((indexPath.row % 2) == 0) {
        [cell.contentView setBackgroundColor:[UIColor whiteColor]];
        [cell.textLabel setBackgroundColor:[UIColor whiteColor]];
    }
    else {
        [cell.contentView setBackgroundColor:[UIColor colorWithRed:243.0f/255.0f green:243.0f/255.0f blue:243.0f/255.0f alpha:1.0f]];
        [cell.textLabel setBackgroundColor:[UIColor colorWithRed:243.0f/255.0f green:243.0f/255.0f blue:243.0f/255.0f alpha:1.0f]];
    }
    cell.textLabel.text = [songArray objectAtIndex:indexPath.row];
    return cell;
}

在此处输入图像描述

于 2012-07-18T19:05:37.450 回答