我正在使用UIPanGestureRecognizer来“拖动”一个Cell。我面临的问题是如何识别触摸的细胞? didSelectRowAtIndexPath对我不起作用,因为用户实际上是从单元格平移而不是选择它。有没有人有任何建议?谢谢!
答案 0 :(得分:0)
如果您将手势识别器添加到UITableView
,那么在手势识别器目标中执行以下操作:
CGPoint locationOfPan = [recognizer locationInView:self.tableView];
NSIndexPath indexPath = [self.tableView indexPathForRowAtPoint:locationOfPan];
然后您可以从表格视图中获取单元格
UITableViewCell *cell = [self.tableView cellForRowAtIndexPath:indexPath];