The ObjC env that I'm using has an NSObjct method
- performSelector:withObject:withObject
Since i have many methods that take 4 args and i need to invoke them
from dynamic config txt, i need to implement a similar method
- performSelector:withObject:withObject:withObject:withObject
for my convienence. I made that work by using NSInvocation etc for
those methods that returns pointers of objs by put return type of
performSelector:...as id.
But I don't know how to specify the return type for
performSelector:... to handle methods that return c types as well.
Is that possible? Thanks a lot