There are dozens of pull to refresh views. I've never found one I'm happy with. I always end up customizing one, so I decided to write one that's highly customizable. You can just write you view and forget about the actual pull to refresh details.
- (void)viewDidLoad {
[super viewDidLoad];
self.pullToRefreshView = [[SSPullToRefreshView alloc] initWithScrollView:self.tableView delegate:self];
}
- (void)refresh {
[self.pullToRefreshView startLoading];
// Load data...
[self.pullToRefreshView finishLoading];
}
- (void)pullToRefreshViewDidStartLoading:(SSPullToRefreshView *)view {
[self refresh];
}
SSPullToRefresh view is highly customizable. All of the pulling logic, animations, etc are wrapped up for you in SSPullToRefreshView. It doesn't have any UI. Its contentView
handles displaying the UI. By default, it sets up an instance of SSSimplePullToRefreshContentView
as the contentView
.
SSPullToRefreshDefaultContentView and SSPullToRefreshSimpleContentView are provided by SSPullToRefresh. By default SSPullToRefreshDefaultContentView
is used if you do not provide a content view. To use the provided simple content view, simply set it:
pullToRefreshView.contentView = [[SSPullToRefreshSimpleContentView alloc] initWithFrame:CGRectZero];
You can simply subclass SSPullToRefreshDefaultContentView
or implement your own view that conforms to SSPullToRefreshContentView
. You must implement the following method:
- (void)setState:(SSPullToRefreshViewState)state withPullToRefreshView:(SSPullToRefreshView *)view
This method will get called whenever the state changes. Here are the possible states. It is recommended to implement UI for most of the states, but you can do whatever you want.
SSPullToRefreshViewStateNormal
(recommended) — Most will say "Pull to refresh" in this stateSSPullToRefreshViewStateReady
(recommended) — Most will say "Release to refresh" in this stateSSPullToRefreshViewStateLoading
(recommended) — The view is loadingSSPullToRefreshViewStateClosing
(optional) — The view has finished loading and is animating closed
You may also optionally implement this method:
- (void)setLastUpdatedAt:(NSDate *)date withPullToRefreshView:(SSPullToRefreshView *)view
I took some inspiration from PullToRefreshView by chpwn, which is based on EGOTableViewPullRefresh, which is inspired by Tweetie 2's pull to refresh by Loren Brichter. And around we go.
Enjoy.