Can I use UIRefreshControl with UICollectionViewScrollDirectionHorizontal?
- by Dan Abramov
You can add UIRefreshControl to UICollectionView (or any UIScrollView for that matter) by adding it to collection's subviews:
UIRefreshControl *refreshControl = [[UIRefreshControl alloc] init];
[refreshControl addTarget:self action:@selector(handleRefresh:) forControlEvents:UIControlEventValueChanged];
[self.collectionView…