Question

Does a method like eval exist in Objective-C as in Javascript, Ruby, PHP, or Python?

I use PhoneGap and I want to create a window which is specific for each of my projects, and I can't use an HTML file. So I want to call a method from JavaScript and, with one of the arguments being Objective-C code to be interpreted.

Was it helpful?

Solution

Sorry, there is no "eval" method in Objective-C, and the iPhone license specifically prohibits interpreted code. You can specify a xib/nib file by name, however.

OTHER TIPS

Try this

NSString *returnOfJavascriptExecution = [webView stringByEvaluatingJavaScriptFromString:@"[your javascript code]"];
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top