gpt4 book ai didi

objective-c - 如何为不同的单元格设置不同的颜色

转载 作者:行者123 更新时间:2023-11-29 04:31:53 24 4
gpt4 key购买 nike

如何为不同的调用设置不同的颜色?例如,所有带有谓词“a”的单元格都是红色,带有谓词“b”的单元格是黄色,等等

最佳答案

UITableViewCell *cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"CELL"];

if (predicateA)
{
[cell setBackgroundColor:[UIColor redColor]];
}
if (predicateB)
{
[cell setBackgroundColor:[UIColor yellowColor]];
}

您可以使用以下真值表来描述这种颜色:

|    A     |     B    |    Color    |
-------------------------------------
| 1 | 1 | YEL | <- What do you want here?
| 1 | 0 | RED |
| 0 | 1 | YEL |
| 0 | 0 | UNDEF |

但是,我对 1, 1 案例的需求有点困惑

关于objective-c - 如何为不同的单元格设置不同的颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11629794/

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