0

我想知道是否可以为显示我博客的 RSS 提要的应用程序实现无限滚动?有点像 Instagram 或 Facebook,当您滚动到底部时,它会获取更多提要。可以对使用 RSS 提要的应用程序执行相同的操作吗?

4

3 回答 3

1

实现这个 UITableView 委托方法:

 - (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath

并使用行的 indexPath 检查您的数据源数组计数。然后使用自定义方法将更多数据添加到您的数组中

于 2013-07-17T13:44:59.980 回答
0

yes this will be possible - you will likely need to implement the logic for this yourself though. Check out this post:

http://michele.berto.li/infinite-scroll-on-ios-with-uitableview/

于 2013-07-17T12:08:36.303 回答
0

看看这个组件:https ://github.com/samvermette/SVPullToRefresh 。有一个包含方法的类别:

[tableView addInfiniteScrollingWithActionHandler:^{
// append data to data source, insert new cells at the end of table view
// call [tableView.infiniteScrollingView stopAnimating] when done
}];

您可以查看示例,它为您提供了一种很好的实现方式。

于 2013-07-17T13:14:03.413 回答