I'm not sure this is possible, but in ruby, you can dynamically call a method using send
e.g. if I want to invoke the bar method for the object, foo, I can use
foo.send("bar")
Is there any way of doing something similar using objective-c?
tks!