我想在视图滚动到底部时加载更多数据,即向上拉刷新,但我不知道如何显示如下所示的“正在加载更多...”之类的单词并在该单元格处停止表格视图,因为如果使用
NSIndexPath *indexPath = [NSIndexPath indexPathForRow:10 inSection:0];
[self.tableView scrollToRowAtIndexPath:indexPath atScrollPosition:UITableViewScrollPositionBottom animated:YES];
有一个错误:
*** Terminating app due to uncaught exception 'NSRangeException', reason: '-[TNTableView _contentOffsetForScrollingToRowAtIndexPath:atScrollPosition:]: row (10) beyond bounds (0) for section (0).'
如果tableView没有数据,加载更多仍然在底部单元格,例如一个表格可以显示9行,如果没有tableview数据,“加载更多”单元格在第10行。