gpt4 book ai didi

ios - 如何还原在 UITableViewCell 中所做的更改

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:39:48 25 4
gpt4 key购买 nike

我有一个名为 Hobbies 的自定义 UITableViewCell

一切正常。除了一个 UII 问题。

当用户点击任何 cell 时,我想更改该特定 Cell 的文本颜色。当用户选择另一个时,我想要之前选择的 cell 应该恢复到原来的状态。

目前,我可以更改 Cell 选择的颜色,但无法在用户选择另一个时将其还原。

这是我用来更改特定单元格的 textColor 的代码:

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
HobbiesCell *cell = (HobbiesCell*)[tableView cellForRowAtIndexPath:indexPath];
cell.dateLabel.textColor = [UIColor colorWithWhite:255 alpha:0.5f];

}

当用户选择另一个单元格时,如何将其还原。

最佳答案

您可以创建一个 UITableViewCell 对象,比如 previousCell 并在您每次选择一个时分配它。这将是您最后选择的单元格,您可以在每次单击新单元格时为其指定默认颜色。

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
HobbiesCell *cell = (HobbiesCell*)[tableView cellForRowAtIndexPath:indexPath];
previousCell.dateLabel.textColor = [UIColor blackColor]; //Assuming that this is the color you want to go back
cell.dateLabel.textColor = [UIColor colorWithWhite:255 alpha:0.5f];
previousCell = cell;
}

关于ios - 如何还原在 UITableViewCell 中所做的更改,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33117420/

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