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