gpt4 book ai didi

iphone - 如何更改表格 View 上的颜色替代单元格

转载 作者:行者123 更新时间:2023-12-03 18:52:20 26 4
gpt4 key购买 nike

我想在数据库中的 TableView 单元格上显示数据,所以我想根据第一个单元格的数据平均值为单元格提供颜色,第一个单元格为灰色,然后接下来的两个单元格再次为棕色我想显示灰色单元格,那么谁能告诉我最简单的程序是什么?

最佳答案

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

if (indexPath.row % 2 == 0) {
[cell setBackgroundColor:[UIColor whiteColor]];
}
else {
[cell setBackgroundColor:[UIColor lightGrayColor]];
}
}

关于iphone - 如何更改表格 View 上的颜色替代单元格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5945615/

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