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
- Host: GitHub
- URL: https://github.com/isaced/isrefresh
- Owner: isaced
- License: mit
- Created: 2015-02-04T07:38:44.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2016-09-14T07:49:03.000Z (almost 10 years ago)
- Last Synced: 2025-01-23T00:29:41.903Z (over 1 year ago)
- Language: Objective-C
- Homepage:
- Size: 26.4 KB
- Stars: 1
- Watchers: 4
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ISRefresh
Easy add UIRefreshControl to any view based UIScrollView

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