gpt4 book ai didi

iphone - 为 xcode 中 TableView 中的备用单元格赋予颜色

转载 作者:行者123 更新时间:2023-12-03 19:26:59 27 4
gpt4 key购买 nike

我想为我的表格 View 单元格提供替代颜色。例如,第一个单元格颜色保持白色,而下一个单元格为浅灰色,然后第三个单元格又是白色,然后下一个单元格又是浅灰色,依此类推。谁能告诉我这样做的方法。

谢谢,克里斯蒂

最佳答案

使用这个克里斯蒂:

- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath 
{
if (indexPath.row == 0 || indexPath.row%2 == 0) {
UIColor *altCellColor = [UIColor colorWithRed:100 green:10 blue:10 alpha:1];
cell.backgroundColor = altCellColor;
}
}

关于iphone - 为 xcode 中 TableView 中的备用单元格赋予颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6174027/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com