Is it possible to create an instance of a class by name? Something like:
NSString* className = @"Car";
id* p = [Magic createClassByName:className];
[p turnOnEngine];
I don't know if this is possible in objective-c but seems like it would be,
|
Is it possible to create an instance of a class by name? Something like:
I don't know if this is possible in objective-c but seems like it would be, |
||||
|
|
|
You can also use the type
then in your
Compared to strings it's a bit pithier, and you avoid typing errors. EDIT: To be clearer, this method is superior because the compiler will check the class name for you. EDIT 2013 May 13: This technique doesn't work anymore. |
|||||||||||||
|
|
If you are working with Objective-C without the NeXTstep (OS X, iOS, GNUstep, etc) system or you just think this method is cleaner, then you could utilize the Objective-C language runtime library's API. Under Objective-C 2.0:
Under the Objective-C (1.0 or unnamed version) you would utilize the following:
I haven't tested the 1.0 version, however I have used the 2.0 function in code that is now in production. I personally believe utilizing the 2.0 function is cleaner if available than the NS function as it consumes less space: the length of the name in bytes + 1 ( null terminator ) for the 2.0 API versus the sum of two pointers (isa, cstring), a size_t length (cstring_length), and the length of the string in bytes + 1 for the NeXTSTEP API. |
|||
|
|