我有一些值的 tabelview 并快速滚动它。我通过点击 tableview 停止滚动,我想知道我触摸的单元格的索引路径。我怎样才能得到这个?我调用了 Scorll 视图委托方法
- (void)scrollViewWillEndDragging:(UIScrollView *)scrollView withVelocity:(CGPoint)velocity targetContentOffset:(inout CGPoint *)targetContentOffset
{
// this method is called using scrollview delegates
}
但它总是返回顶部可见行的索引路径和值。请帮忙!