gpt4 book ai didi

ios - 使UITableViewCell选择闪烁

转载 作者:行者123 更新时间:2023-12-01 17:53:18 24 4
gpt4 key购买 nike

我想让UITableViewCell突出显示为灰色,然后在用户触摸UITableViewCell之后又回到白色。

我可以将其设置为灰色,但在用户选择另一个单元之前,它将保持灰色...

这是我的代码。

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
cell.selectionStyle = UITableViewCellSelectionStyleGray;

}

最佳答案

为了取消选中它,您可以添加它

[self.tableView deselectRowAtIndexPath:indexPath animated:YES];


- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
cell.selectionStyle = UITableViewCellSelectionStyleGray;

[tableView deselectRowAtIndexPath:indexPath animated:YES];
}

编辑1

尝试将其更改为
double delayInSeconds = 0.8;
dispatch_time_t popTime = dispatch_time(DISPATCH_TIME_NOW, delayInSeconds * NSEC_PER_SEC);
dispatch_after(popTime, dispatch_get_main_queue(), ^(void){
[tableView deselectRowAtIndexPath:indexPath animated:YES];

});

关于ios - 使UITableViewCell选择闪烁,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22990683/

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