Skip to content

Files

Latest commit

 

History

History
13 lines (10 loc) · 928 Bytes

README.mdown

File metadata and controls

13 lines (10 loc) · 928 Bytes

objc-eval

objc-eval is ruby-like eval ("eval? what's that?!" read this) for objective-c. Is it a good idea? I don't know. If you have to ask, it's probably not. It will, however, satisfy my (morbid) curiosity about whether or not it's possible. It carries along all the usual security concerns of any language's "eval." Make sure you trust the source of the code that is about to be compiled and executed with whatever privileges the program you used objc-eval in has.

Usage

Add to your project as you would any framework. You can either asynchronously evaluate with a delegate, or synchronously evaluate. Did I mention how stupid this is yet?

Example

OEEvaluation *evaluation = [OEEvaluation evaluationWithCode:@"return @\"Hello World!\";" delegate:nil]; NSLog([evaluation evaluateSynchronously]);