I'd like to define a function in the JavascriptCore context that takes a variable amount of arguments.
Something like this:
JSVirtualMachine* virtualMachine = [[JSVirtualMachine alloc] init];
JSContext* ctx = [[JSContext alloc] initWithVirtualMachine:virtualMachine];
ctx[@"func"] = ^(JSValue* value, ...){
va_list args;
va_start(args, value);
for (JSValue *arg = value; arg != nil; arg = va_arg(args, JSValue*)) {
NSLog( @"%@", arg);
}
va_end(args);
};
[ctx evaluateScript:@"func('arg1', 'arg2');"];
I believe that the JSC wrapper doesn't pass the second argument to the block, because iterating on va_list
crashes after logging the first argument.
I also tried with the NSArray*
convention, it doesn't work.
Is this possible in any way?
JSObjectMakeFunctionWithCallback
, but I'd like to go away from that C interface so ARC can handle JS Value's memory. – Exploitation