所以我一直试图制作像instagram这样的应用来了解如何制作社交应用 我对编码比较陌生 我一直在努力实现“加载更多”'将单元格转换为PFQueryTableView,其中包含许多要上传的单元格。 我已经在底部出现了Load More cel但是我不确定它为什么不加载下一页
这是我到目前为止所得到的:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForNextPageAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"LoadMoreCell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
return cell;
}
- (void)tableView:(UITableView *)tableView CellForRowAtIndexPath:(NSIndexPath *)indexPath;
{
if (indexPath.section == self.objects.count && self.paginationEnabled) {
[self loadNextPage];
}
}
答案 0 :(得分:0)
有一个库可用,可让您在向上滚动时加载更多内容,并在向上滚动时刷新内容,就像Instagram应用程序一样。 使用起来也非常简单。
DragRefreshAndLoadMoreTableDemo
希望它对你有所帮助。