我在核心数据中有数千行数据。进行较大的访存会明显降低UX的速度。由于我让用户以各种方式查看数据,因此重新加载很常见,而重新加载FRC可能很痛苦。因此,我一直在FetchLimit中输入“ 50”。50对于速度非常有用,但是只拉取一部分行,因此根本无法访问较旧的数据。
我想实现无限滚动,以便当用户点击TableView的底部时加载新行。我可以使用以下几种委托方法中的任何一种来触发重新加载:
- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {
NSInteger lastSectionIndex = [tableView numberOfSections] - 1;
NSInteger lastRowIndex = [tableView numberOfRowsInSection:lastSectionIndex] - 1;
if ((indexPath.section == lastSectionIndex) && (indexPath.row == lastRowIndex)) {
// This is the last cell
[self getMore];
}
}
我的问题是如何获得更多。下面的方法有效,但是看起来很笨拙,因为您需要重新加载所有较早的单元,并且很难跟踪您在fetchLimit中的位置。有没有更有效的方法来完成无限滚动?
- (void)getMore {
[self.fetchedResultsController.fetchRequest setFetchLimit:newFetchLimit];
self.fetchedResultsController = nil;
NSError *error;
if (![self.fetchedResultsController performFetch:&error]) {
// Update to handle the error appropriately.
NSLog(@"Unresolved error %@, %@", error, [error userInfo]);
}
[self.tableView reloadData];
}
最佳答案
在getMore函数中,可以将fetchOffset属性与fetchLimit结合使用,以便可以创建任意结果集的子范围,并避免再次重新加载所有单元格内容。
[fetchedResultsController.fetchRequest setFetchOffset: newFetchOffset];
其中
newFetchOffset
将从0开始,并且在您的第二个请求中,您需要将其设置为50,以便获得下一个第50个值。关于ios - 在IOS中使用FetchLimit和核心数据的无限滚动TableView,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/54262080/