I\'m trying to set a tintColor on my UIRefreshControl (building on iOS 7). I enabled refreshing for the tableViewController in storyboard, then in my ViewController vi
vi
Solution for the tintColor issue: add this in viewDidLoad
[self.refreshControl setTintColor:[UIColor whiteColor]]; [self.refreshControl tintColorDidChange];
Now you have a white indicator when you call beginRefresh manually.