Skip to content

Instantly share code, notes, and snippets.

@czwen
Created November 30, 2015 08:26
Show Gist options
  • Save czwen/97e4d7b39d19e275cf6a to your computer and use it in GitHub Desktop.
Save czwen/97e4d7b39d19e275cf6a to your computer and use it in GitHub Desktop.
fuck when UIRefreshControl refresh manually but the tintcolor not change
[UIView animateWithDuration:0.25 delay:0 options:UIViewAnimationOptionBeginFromCurrentState animations:^(void){
self.tableView.contentOffset = CGPointMake(0, -self.refresh.frame.size.height);
} completion:^(BOOL finished) {
[self.refresh beginRefreshing];
[self loadProductsList];
}];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment