Advertisement
undeadhip

Untitled

Jun 22nd, 2015
220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. NSInteger _downloads;
  2.  
  3. -(IBAction)refresh:(id)sender{
  4.     if (_downloads == 0) {
  5.     [self refreshAction];
  6.     }
  7. }
  8.  
  9. - (void)downloadStarted {
  10.     _downloads++;
  11. }
  12.  
  13. - (void)downloadFinished {
  14.     _downloads--;
  15.     if (_downloads == 0 && self.refreshControl.refreshing) {
  16.         [self refreshAction];
  17.     }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement