Interpret Objective C scripts at runtime on iPhone?

Posted by Brad Parks on Stack Overflow See other posts from Stack Overflow or by Brad Parks
Published on 2010-04-27T17:03:12Z Indexed on 2010/04/27 17:13 UTC
Read the original article Hit count: 1066

Is there anyway to load an objective c script at runtime, and run it against the classes/methods/objects/functions in the current iPhone app?

The reason i ask is that I've been playing around with iPhone wax, a lua interpreter that can be embedded in an iPhone app, and it works very nicely, in the sense that any object/method/function that's publically available in your Objective C code is automatically bridged, and available in lua.

This allows you to rapidly prototype applications by simply making the core of your app be lua files that are in the users documents directory. Just reload the app, and you can test out changes to your lua files without needing to rebuild the app in XCode - a big time saver!

But, with Apples recent 3.1.3 SDK stuff, it got me thinking that the safest approach for doing this type of rapid prototypeing would be if you could use Objective C as the interpreted code... That way, worst case scenario, you could just compile it into your app before your release, instead. I have heard that the lua source can be compiled to byte code, and linked in at build time, but I think the ultimate safe thing would be if the scripted source was in objective c, not lua.

This leads me to wondering (i've searched, but come up with nothing) if there are any examples on how to embed an Objective C Interpreter in an iPhone app? This would allow you to rapidly prototype your app against the current classes that are built into your binary, and, when your about to deploy your app, instead of running the classes through the in app interpreter, you compile them in instead.

© Stack Overflow or respective owner

Related posts about iphone

Related posts about objective-c