merge from https://github.com/samvermette/SVPullToRefresh.git & https://github.com/Yalantis/PullToRefresh.git
DPullRefresh is an extension to TableView & CollectionView. It has a default drop-down and pull-up effect, of course, you can also customize their own, only need to achieve the relevant agreement
pod 'DPullToRefresh','0.0.8'
#import <DPullToRefresh/UIScrollView+PullToRefresh.h>
import DPullToRefresh
[self.tableView addPullToRefreshWithActionHandler:^{
[weakSelf refresh];
}];
[self.tableView addInfiniteScrollingWithActionHandler:^{
[weakSelf getMore];
}];
[tableView.topPullToRefreshView startRefreshing];
[tableView.buttomPullToRefreshView startRefreshing];
[tableView.topPullToRefreshView endRefreshing];
[tableView.buttomPullToRefreshView endRefreshing];