gpt4 book ai didi

iphone - 当我们持有 UITableViewCell 时将调用哪个方法

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:42:27 24 4
gpt4 key购买 nike

当我们选择 UITableViewCell 时 - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath 调用。

但是如果我们持有 UITebleViewCell,将调用哪个方法。伙计们,我的问题是我创建了一个包含大单元格的表格 View ,并且在该单元格中我正在设置各种 View 和 View 的背景颜色。

当我选择单元格时,单元格的背景颜色将消失。我已经通过在 didSelectRowAtIndexPath 方法中再次设置 View 背景颜色解决了这个问题。

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *selectedCell = [tableView cellForRowAtIndexPath:indexPath];

UIView *vLineview=[selectedCell viewWithTag:1];
vLineview.backgroundColor = [UIColor colorWithRed:(89/255.0) green:(89/255.0) blue:(89/255.0) alpha:1];
}

这就成功了,我的 View 背景颜色会显示出来,但是当我按住 UITableViewCell 时,它会再次消失。

我该如何解决这个问题?我是否必须和手势识别器来检测长触摸并在其中实现我的 View 背景方法?或者还有其他可用的方法。

最佳答案

尝试在 cellForRowAtIndexPath 中设置单元格选择样式 none like this

[cell setSelectionStyle:UITableViewCellSelectionStyleNone];

关于iphone - 当我们持有 UITableViewCell 时将调用哪个方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17190902/

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