I am asking myself how can I convert string value into an object variable in Objective C - iOS. I know that in JavaScript you can do this with eval() function.
I want something like that:
NSString *variableString = @"variable";
NSNumber *myVariable = myObject.{variableString};
It this possible in ObjectiveC ?
Thanks