The text is offset wrong by the first launch of UIRefreshControl... later sometimes the refresh text doesn\'t show up at all and just the spiny is visible
I don\'t t
calling endRefreshing under viewWillAppear did it for me:
endRefreshing
viewWillAppear
-(void)viewWillAppear:(BOOL)animated { [super viewWillAppear:animated]; [self.refreshControl endRefreshing]; }
Under iOS7 with a custom UITableViewController inside a UINavigationController
UITableViewController
UINavigationController