Skip to content

Instantly share code, notes, and snippets.

@quellish
Created August 9, 2014 20:07
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save quellish/cb78e6ae9d69d4221102 to your computer and use it in GitHub Desktop.
Save quellish/cb78e6ae9d69d4221102 to your computer and use it in GitHub Desktop.
Pseudo-sample of a core data fetch with a completion block.
- (void) fetchThingsWithCompletion:(void (^)(NSArray *, NSError *))completion{
[context performBlock:^{
result = [context executeFetch:...
if (completion != nil){
completion(result, error);
}
}];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment