vote up 0 vote down star

I want to access properties and call methods of an Objective-C object that was returned to JavaScript host as property of exposed object ([windowScriptObject setValue:self forKey:@"a"]):

- (id) valueForUndefinedKey:(NSString*) key {
  if ( [key isEqualToString:@"b"] ) {
    MyObject* obj = [ [ MyObject alloc ] init ];
    return obj;
  }
  return Nil;
}

In Javascript I want to be able to do the following:

// a is already exposed Objective-C object
var b = a.b; // reference to myObject
var c = a.b.c; // myObject.c
var d = a.b.d(); // [ myObject d ]
flag

1 Answer

vote up 0 vote down

MyObject needs to implement +isSelectorExcludedFromWebScript: and/or +isKeyExcludedFromWebScript:. By default, Javascript is not allowed to access Objective-C methods; you have to explicitly permit it.

Are you seeing some other symptom beyond that?

For more information, see Using Objective-C From Javascript.

link|flag
i've read all that. using -valueForUndefinedKey:, setValue:forUndefinedKey:, -invokeUndefinedMethodFromWebScript:withArguments: one can dispatch arbitrary gets, sets and method calls from JavaScript to Objective-C object, exposed as shown in Using Objective-C From Javascript. I want to go further and return (make accessible via a.b.c) another Objective-C object to JavaScript host. – mojo Sep 3 at 15:54
You will then still need to make sure that MyObject allows Javascript access (which is what +isSelectorExcludedFromWebScript: is for). Also, is this Javascript local to the machine, or coming from the network? Granting remote Javascript unlimited access to the Cocoa process makes the product very hard to secure, and would allow an attacker to run arbitrary code as the user with DNS spoofing (or a variety of other common attacks). This isn't a problem if the Javascript is stored in your own bundle (as in the case of Pandoraboy's Javascript bridge). – Rob Napier Sep 3 at 16:31
-isSelectorExcludedFromWebScript: and -isKeyExcludedFromWebScript: return NO. JavaScript is local, I want to build more flexible bridge between JS and core app code. – mojo Sep 3 at 16:43
So what issue are you seeing? – Rob Napier Sep 3 at 16:49
please review pastebin.com/m4581e633 – mojo Sep 3 at 17:46
show 2 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.