1

我有一些值的 tabelview 并快速滚动它。我通过点击 tableview 停止滚动,我想知道我触摸的单元格的索引路径。我怎样才能得到这个?我调用了 Scorll 视图委托方法

- (void)scrollViewWillEndDragging:(UIScrollView *)scrollView withVelocity:(CGPoint)velocity targetContentOffset:(inout CGPoint *)targetContentOffset
{
// this method is called using scrollview delegates
}

但它总是返回顶部可见行的索引路径和值。请帮忙!

4

1 回答 1

0

获取您的回复并将其保存在字典中。

NSDictionary *u = [结果 objectAtIndex:indexPath.row];

在滚动视图上创建一个按钮并设置一个标签值 =indexPath.row

在滚动时单击按钮,您会单击该单元格的索引(此处的按钮)。

于 2013-04-09T10:31:09.850 回答