在顶部和底部的UIcollectionView上的UIrefresh控件

时间:2014-10-07 10:46:01

标签: ios uicollectionview paging uirefreshcontrol

我想在我的collectionView中添加分页。我在我的集​​合View中使用瀑布布局。只有两行。

滚动是水平的。我希望以这样一种方式添加分页,即用户可以来回浏览页面。

我在Simon Westerlund的Git中找到了其中一个。但是在这个UIrefreshCOntrol中只添加了顶部。我也希望在底部的ahev UIrefresh控件。这样我就可以显示分页效果了。就像它在Facebook应用程序的情况下一样

1 个答案:

答案 0 :(得分:1)

我认为你可以使用已经从UICollectionView继承的UIScrollView coz的弹跳效果并使用以下委托方法

您只需添加以下行并调用您的方法,而不是[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];
    }
 }