I\'m trying to add a UIRefreshControl to a UICollectionView, but the problem is that the refresh control does not appear unless the collection view
I too was facing the same issue, I was not able to use the UIRefreshControl until the UICollectionView's content size was large enough to scroll vertically,
Setting the bounces property of UICollectionView solved this
[self.collectionView setBounces:YES];
[self.collectionView setAlwaysBounceVertical:YES];