Skip to content

Instantly share code, notes, and snippets.

@freekh
Created February 9, 2012 10:07
Show Gist options
  • Save freekh/1779017 to your computer and use it in GitHub Desktop.
Save freekh/1779017 to your computer and use it in GitHub Desktop.
Finish callback
- (void) didFinish: (NSData*) data sender: (AsyncURLWrapper*) blob
{
if (blob == _asyncWrapper1) {
NSLog(@"data 1: %@", data);
}
if (blob == _asyncWrapper2) {
NSLog(@"data 2: %@", data);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment