Skip to content

Instantly share code, notes, and snippets.

@andreortiz82
Created October 15, 2012 07:03
Show Gist options
  • Save andreortiz82/3891145 to your computer and use it in GitHub Desktop.
Save andreortiz82/3891145 to your computer and use it in GitHub Desktop.
dispatch_async script ios
dispatch_async(kBgQueue, ^{
NSData* data = [NSData dataWithContentsOfURL:
kLatestKivaLoansURL];
[self performSelectorOnMainThread:@selector(fetchedData:)
withObject:data waitUntilDone:YES];
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment