Skip to content

Instantly share code, notes, and snippets.

View boundn's full-sized avatar

Boundn boundn

  • boundn
  • Apex, NC
View GitHub Profile
@boundn
boundn / CustomParseQueryTableViewController.h
Created September 27, 2012 19:12
Disable the built-in pull-to-refresh view on PFQueryTableViewController and implement your own. This is a starting point and only shows how to get access to the EGORefreshTableHeaderView. Customize away!
#import <Parse/Parse.h>
@interface CustomParseQueryTableViewController : PFQueryTableViewController
{
PF_EGORefreshTableHeaderView *_refreshHeaderView;
BOOL _reloading;
}
- (void)reloadTableViewDataSource;
- (void)doneLoadingTableViewData;