由于refreshControl,IOS集合视图滚动卡住了

时间:2014-06-02 09:00:25

标签: ios uicollectionview uirefreshcontrol

嗨在我的应用程序中,我使用refreshControl作为我的集合视图。它工作正常。唯一的问题是,当我尝试滚动我的集合视图时,它会卡在某个点上。但是,如果我删除refreshControl,那么它的工作正常。我没有使用UICollectionView控制器。我正在使用带有集合视图委托的UIviewcontroller。我正在做一些事情。

self.refreshControl = [[UIRefreshControl alloc] init];
self.refreshControl.tintColor = [UIColor grayColor];
[self.refreshControl addTarget:self action:@selector(reloadData) forControlEvents:UIControlEventValueChanged];
[self.collectionView addSubview:self.refreshControl];
self.collectionView.alwaysBounceVertical = YES;

它在某个时刻陷入困境。有没有人知道这件事?需要帮忙。谢谢。

0 个答案:

没有答案