我想在我的collectionView中添加分页功能。我在我的收藏视图中使用瀑布布局。只有两行的
滚动是水平的。我想添加分页的方式,使用户可以来回的页面。
我在西蒙·韦斯特伦德的Git上找到了一个。但在这个UIrefreshCOntrol中,只在顶部添加。我也想在底部添加一个UIrefresh控件。这样我就可以展示分页效果了。就像Facebook应用程序一样
发布于 2014-10-07 18:51:52
我认为你可以使用UICollectionView的反弹效果,因为它已经从UIScrollView继承了,并使用了下面的委托方法
您只需添加以下代码行并调用您的方法,而不是调用[self fetchMoreEnteries]
- (void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView
{
float endScrolling = scrollView.contentOffset.y + scrollView.frame.size.height;
if (endScrolling >= scrollView.contentSize.height)
{
NSLog(@"Scroll End Called");
[self fetchMoreEntries];
}
}https://stackoverflow.com/questions/26234228
复制相似问题