I need to ask, how can I convert a string containing a piece of code to actual runnable code:
int x = 7;
int y = 9;
NSString *myCode = @"if(x > y) return x; else return y;";
I need to be able to run myCode as actual Objective C code. The example given is a dummy example just to illustrate the idea.