带标题的UICollectionView用于刷新跳转

时间:2015-07-28 12:39:43

标签: ios objective-c pull-to-refresh

我正在使用pull来刷新带有标题的UICollectionView(我不知道标题是否相关)。当我在刷新部分之前拉动刷新时,集合视图会跳下(根本不顺利)。

可能是什么问题?

这是我的代码 -

- (void)addRefresh
{
    self.refreshControl = [[UIRefreshControl alloc] init];
        [self.refreshControl addTarget:self action:@selector(reset) forControlEvents:UIControlEventValueChanged];
        [self.refreshControl setBackgroundColor:[UIColor whiteColor]];
        [self.profileCollectionView addSubview:self.refreshControl];
}
- (void)reset
{

    [self.refreshControl endRefreshing];
}

1 个答案:

答案 0 :(得分:0)

UIRefreshControl我遇到了类似但不完全相同的问题,其中文字会与UIActivityIndicator的{​​{1}}重叠。这只会在您第一次激活UIRefreshControl时发生。我不确定此修复程序是否会对您有所帮助,但您可以尝试一下:

UIRefreshControl