Skip to content

Instantly share code, notes, and snippets.

@jarek-foksa
Created March 16, 2013 10:02
Show Gist options
  • Select an option

  • Save jarek-foksa/5175781 to your computer and use it in GitHub Desktop.

Select an option

Save jarek-foksa/5175781 to your computer and use it in GitHub Desktop.
- (void)init {
[self test:@0]; // prints 0
[self test:@1]; // prints 0
[self test:@2]; // prints 0
}
- (void)test:(NSNumber *)arg {
[doAsyncStuff callback:^(void) {
NSLog(@"arg %@", arg);
}];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment