How can I invoke a method at runtime on an Objective-C class when all I have is it's signature in string form:
NSString* typeName = @"Widgets";
NSString* methodName = [NSString stringWithFormat:@"add%@Object:", typeName];
Note that the method name can change at runtime but the number of arguments stays fixed - one in this instance.