Skip to content

Instantly share code, notes, and snippets.

@ssoper
Created May 19, 2011 13:58
Show Gist options
  • Save ssoper/980807 to your computer and use it in GitHub Desktop.
Save ssoper/980807 to your computer and use it in GitHub Desktop.
EGORefreshTableHeaderViewCategory
// Use this handy method if you need to force the table view to refresh
//
// [self.egoRefreshTableView forceRefresh: self.tableView];
//
@implementation EGORefreshTableHeaderView
- (void) forceRefresh:(UIScrollView *) scrollView {
[scrollView setContentOffset: CGPointMake(0, -65) animated: NO];
[self egoRefreshScrollViewDidEndDragging: scrollView];
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment