Is there an equivalent to selectors for classes? How to create an instance of a class from a string?
You want to NSClassFromString.
NSClassFromString
NSString *theClassForMe = @"NSMutableArray"; id newObject = [[NSClassFromString(theClassForMe) alloc] init];