An open API service indexing awesome lists of open source software.

https://github.com/isaced/isrefresh

Add pull-to-refresh to UIScrollView,UITableView,UICollectionView
https://github.com/isaced/isrefresh

Last synced: over 1 year ago
JSON representation

Add pull-to-refresh to UIScrollView,UITableView,UICollectionView

Awesome Lists containing this project

README

          

# ISRefresh

Easy add UIRefreshControl to any view based UIScrollView

![screenshot](https://raw.githubusercontent.com/isaced/ISRefresh/master/screenshot.gif)

### Usage

```
__weak ViewController *weakSelf = self;
[self.scrollView addHeaderRefreshWithCallback:^{
// load...
[weakSelf.scrollView endRefreshing];
}];
```