Skip to content

Instantly share code, notes, and snippets.

@jdewind
Created July 6, 2010 14:22
Show Gist options
  • Save jdewind/465438 to your computer and use it in GitHub Desktop.
Save jdewind/465438 to your computer and use it in GitHub Desktop.
NSInvocation *invocation;
// Create it
[invocation setTarget:obj];
[invocation setSelector:@selector(myMethod)];
@try {
[invocation invoke];
}
@catch (NSException * e) {
NSLog(@"This exception cannot be caught");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment