gpt4 book ai didi

iphone - 如何检测 iPhone 表格单元格中的触摸事件

转载 作者:行者123 更新时间:2023-12-03 18:42:11 25 4
gpt4 key购买 nike

如何检测表格单元格的触摸事件我试过这个

- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
//<my stuff>

[super touchesBegan:touches withEvent:event];
}

但它实际上不起作用,我在表格单元格中有一个 UIimage View ,我想根据点击更改图像,所以我的触摸事件不适用于该单元格

最佳答案

如果您想检测 UITableViewCell 上的触摸,则实际上不需要检测触摸事件。在您的 UITableViewController 子类中,您需要实现以下委托(delegate)方法:

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath;

然后修改所选索引路径的表格单元格的图像。

关于iphone - 如何检测 iPhone 表格单元格中的触摸事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3349609/

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