我正在使用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];
}
答案 0 :(得分:0)
UIRefreshControl
我遇到了类似但不完全相同的问题,其中文字会与UIActivityIndicator
的{{1}}重叠。这只会在您第一次激活UIRefreshControl
时发生。我不确定此修复程序是否会对您有所帮助,但您可以尝试一下:
UIRefreshControl