Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/netyouli/whc_pullanduprefreshdemo
高仿QQ下拉水滴刷新效果
https://github.com/netyouli/whc_pullanduprefreshdemo
Last synced: about 1 month ago
JSON representation
高仿QQ下拉水滴刷新效果
- Host: GitHub
- URL: https://github.com/netyouli/whc_pullanduprefreshdemo
- Owner: netyouli
- Created: 2015-07-24T09:07:50.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-11-05T01:50:10.000Z (about 9 years ago)
- Last Synced: 2023-10-20T22:01:34.243Z (about 1 year ago)
- Language: Objective-C
- Homepage:
- Size: 2.08 MB
- Stars: 36
- Watchers: 5
- Forks: 13
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# WHC_PullAndUpRefreshDemo
### qq:712641411
###目前最好用的列表上拉下拉刷新效果!
##运行效果
![](https://github.com/netyouli/WHC_PullAndUpRefreshDemo/blob/master/WHC_PullAndUpRefreshDemo/os.gif)####Use Example
```objective-c
// AllStyle表示集成上拉和下拉刷新
[tableView setWHCRefreshStyle:AllStyle delegate:self];//实现刷新回调代理
- (void)WHCUpPullRequest{
NSLog(@"开始加载更多");
}- (void)WHCDownPullRequest{
NSLog(@"开始请求数据");
}```