最佳答案
我试图向 UICollectionView
添加一个 UIRefreshControl
,但问题是刷新控件不会出现,除非集合视图填满其父容器的高度。换句话说,除非集合视图足够长,需要滚动,否则不能将其下拉以显示刷新控件视图。一旦集合超过其父容器的高度,它就会被下拉并显示刷新视图。
我已经建立了一个快速的 iOS 项目,只有一个 UICollectionView
内的主视图,与一个出口的集合视图,以便我可以添加到它的 viewDidLoad
的 UIRefreshControl
。还有一个具有重用标识符 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);
}