ios – 如何获取当前正在显示的tableView的indexPath.row?

前端之家收集整理的这篇文章主要介绍了ios – 如何获取当前正在显示的tableView的indexPath.row?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个包含许多值的tableView.

我想获取当前显示的表的第一个indexPath.row值.

我怎样才能做到这一点?

在实现krishnabhadra的答案时,我得到以下错误

出现错误的行是:

[self.table scrollToRowAtIndexPath:indexVis atScrollPosition:UITableViewScrollPositionTop animated:YES];

错误

Assertion failure in -[NSIndexPath row],/SourceCache/UIKit_Sim/UIKit-1447.6.4/UITableViewSupport.m:2018
2011-04-01 11:57:25.458 GlossaryPro[1525:207] *** Terminating app due to uncaught exception 'NSInternalInconsistencyException',reason: 'Invalid index path for use with UITableView.  Index paths passed to table view must contain exactly two indices specifying the section and row.  Please use the category on NSIndexPath in UITableView.h if possible.'

可能有什么不对?

解决方法

您可以使用tableView indexPathsForVisibleRows函数,该函数为所有可见的UITableViewCell返回NSIndexPath的NSArray.从indexPath.row您可以找到您的数组索引.
NSArray *visible       = [tableView indexPathsForVisibleRows];
NSIndexPath *indexpath = (NSIndexPath*)[visible objectAtIndex:0];

indexPath.row将为您显示第一个对象的索引.

原文链接:https://www.f2er.com/iOS/335361.html

猜你在找的iOS相关文章