Skip to content

Instantly share code, notes, and snippets.

@trentbrooks
Last active August 29, 2015 14:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save trentbrooks/e41a592ea87f2815d2c4 to your computer and use it in GitHub Desktop.
Save trentbrooks/e41a592ea87f2815d2c4 to your computer and use it in GitHub Desktop.
threading/mutex objc problem
- (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