gpt4 book ai didi

ios - 从UIColor数组设置单元格背景

转载 作者:行者123 更新时间:2023-12-01 18:57:02 25 4
gpt4 key购买 nike

我有一个充满UIColors的数组。我想将它们设置为单元格背景色,以用作在饼图上复制颜色的键。

这是这个数组:

 self.sliceColors =[NSArray arrayWithObjects:
[UIColor colorWithRed:246/255.0 green:155/255.0 blue:0/255.0 alpha:1],
[UIColor colorWithRed:129/255.0 green:195/255.0 blue:29/255.0 alpha:1],
[UIColor colorWithRed:62/255.0 green:173/255.0 blue:219/255.0 alpha:1],
[UIColor colorWithRed:229/255.0 green:66/255.0 blue:115/255.0 alpha:1],
[UIColor colorWithRed:148/255.0 green:141/255.0 blue:139/255.0 alpha:1],nil];

很好。我正在尝试编写语法为单元格上色。环顾四周,我发现了这一点:
- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath
{

}

但是我不知道如何用数组中的颜色填充它。我尝试过的所有内容都产生了语法错误。

最佳答案

潜在的解决方案:

- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath
{
cell.backgroundColor = self.sliceColors[indexPath.row % self.sliceColors.count];
}

关于ios - 从UIColor数组设置单元格背景,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26166796/

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