The following code works as expected:
NSLog(@"%@", [NSString stringWithString:@"test"];
But when I replace it with NSInvocation, I get a completely different result:
Class class = [NSString class];
SEL selector = @selector(stringWithString:);
NSInvocation *invocation = [NSInvocation invocationWithMethodSignature:
[class methodSignatureForSelector:selector]];
[invocation setTarget:class];
[invocation setSelector:selector];
[invocation setArgument:@"test" atIndex:2];
[invocation invoke];
id returnValue = nil;
[invocation getReturnValue:&returnValue];
NSLog(@"%@", returnValue);
I searched high and low, but cannot figure it out. Any help? Thank!
source
share