顶部和底部UIcollectionView上的UIrefresh控件

问题描述 投票:0回答:1

我想在我的collectionView中添加分页。我在我的收藏视图中使用瀑布布局。只有两行。

滚动是水平的。我想以这样的方式添加分页,以便用户可以来回页面。

我在 Git 上找到了 Simon Westerlund 的其中一篇。但在此 UIrefreshCOntrol 仅添加在顶部。我也想在底部添加 UIrefresh 控件。这样我就可以显示分页效果了。就像 Facebook 应用程序的情况一样

ios pagination uicollectionview uirefreshcontrol
1个回答
1
投票

我认为你可以使用

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];
    }
 }
© www.soinside.com 2019 - 2024. All rights reserved.