Last active
August 29, 2015 14:22
-
-
Save trentbrooks/e41a592ea87f2815d2c4 to your computer and use it in GitHub Desktop.
threading/mutex objc problem
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- (void)updateData:(NSTimer*)timer { | |
// if already getting data do nothing | |
if(!self.isFetchDataComplete) { | |
NSLog(@"Do not get data - flag is OFF..."); | |
return; | |
} | |
// reset the flag | |
self.isFetchDataComplete = FALSE; | |
// get new data | |
[self.pulseDataStore dataFrom:self.startDataDate | |
till:self.endDataDate | |
completion:^(NSArray *array) { | |
dispatch_sync(dispatch_get_main_queue(), ^{ | |
self.isFetchDataComplete = TRUE; | |
}); | |
} | |
}]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment