我有一个包含许多值的tableView.
我怎样才能做到这一点?
在实现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将为您显示第一个对象的索引.