vote up 1 vote down star
2

Is there an equivalent of selectors for classes? How can I create a instance of a class from a string?

flag

2 Answers

vote up 4 vote down check

You want NSClassFromString.

NSString *theClassForMe = @"NSMutableArray";
id newObject = [[NSClassFromString(theClassForMe) alloc] init];
link|flag
vote up -1 vote down

Or, I think you could just use:

Class TheClassForMe = [NSMutableArray class];
id newObject = [[TheClassForMe alloc] init];
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.