我正在使用 Grant Paul 的 PullToRefreshView,我想知道是否可以在代码中添加一个 didFinishRefreshing 方法,以便在它完成它的事情时调用几个事件。我该怎么做呢?
这是您调用以停止刷新过程的代码:
- (void)finishedLoading {
if (state == PullToRefreshViewStateLoading) {
[UIView animateWithDuration:0.3f animations:^{
[self setState:PullToRefreshViewStateNormal];
}];
}
}
但我不知道从这里去哪里。