我正在尝试将 a 添加UIRefreshControl
到 a UICollectionView
,但问题是刷新控件不会出现,除非集合视图填满其父容器的高度。换句话说,除非集合视图足够长以至于需要滚动,否则它不能被拉下以显示刷新控制视图。一旦集合超过其父容器的高度,它就会被拉下并显示刷新视图。
我已经建立了一个快速的 iOS 项目,其中只有一个UICollectionView
内部主视图,有一个到集合视图的出口,以便我可以将其添加UIRefreshControl
到viewDidLoad
. 还有一个带有重用标识符的原型单元cCell
这是控制器中的所有代码,它很好地展示了这个问题。在这段代码中,我将单元格的高度设置为 100,这不足以填充显示,因此无法拉出视图并且不会显示刷新控件。将其设置为更高的值以填充显示,然后它就可以工作了。有任何想法吗?
@interface ViewController () <UICollectionViewDelegateFlowLayout, UICollectionViewDataSource>
@property (strong, nonatomic) IBOutlet UICollectionView *collectionView;
@end
@implementation ViewController
- (void)viewDidLoad
{
[super viewDidLoad];
UIRefreshControl *refreshControl = [[UIRefreshControl alloc] init];
[self.collectionView addSubview:refreshControl];
}
-(NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView {
return 1;
}
-(NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section {
return 1;
}
-(UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath {
return [collectionView dequeueReusableCellWithReuseIdentifier:@"cCell" forIndexPath:indexPath];
}
-(CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath {
return CGSizeMake(self.view.frame.size.width, 100);
}