SVPullToRefresh not working with UICollectionView when content height is less than the height

723 Views Asked by At

I'm using SVPullToRefresh to enable pull to refresh in UICollectionView. But I find a problem with it. Suppose my collection view size is 320(width) x 300(height) then if content size height of collection view less than the height than the pull to refresh view is not working. Means, when I am trying to drag down (pull down the collection view) it'll not drag the pull area and not even show pull to refresh view.

What can be a work around for this? I tried updating collection view's content size but it doesn't help.

1

There are 1 best solutions below

0
On BEST ANSWER

I think setting

self.collectionView.alwaysBounceVertical = YES;

will do the trick.