I have two JSContexts, and I want to swap JSValues between them from time to time. However, I'm having difficulty moving a JSValue to a new context, if that's possible.
I'm trying this:
newContext[@"newValue"] = [JSValue valueWithObject:newValue inContext:newContext];
While the new context now has that value, the value still retains its old context. Unfortunately, it still retains its old context. Any suggestions?
I suggest you extract the value of the JSValue from its old javascript context into an ordinary objective-c object before creating the new JSValue in the new context. Looking at JSValue.h shows that the JSValue class has a read-only property that holds the JSContext that the value originates from.
I can't tell what type of value you are dealing with from your code above, but for example (for simple types):
or for a more complex object:
Note that the value will still exist in the old JSContext (the old JSContext will remain alive whilst the old value is retained). You may want to remove this reference by:
Note also that you don't need to use the constructor:
since JavaScriptCore has built-in conversion for the following (see JSValue.h):