如何检测表格单元格的触摸事件我试过这个
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
//<my stuff>
[super touchesBegan:touches withEvent:event];
}
Run Code Online (Sandbox Code Playgroud)
但是它不能正常工作我在表格单元格中有一个iUIimage视图,我想基于tap点击imgon,所以我的触摸事件不适用于那个单元格
iphone ×1