Created
May 19, 2011 13:58
-
-
Save ssoper/980807 to your computer and use it in GitHub Desktop.
EGORefreshTableHeaderViewCategory
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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