Quick question for you. I want to be able to create an instance of an object. The object type is based of a string.
In php you can just replace the class name with a s
You can get a Class object dynamically with NSClassFromString()
Class
NSClassFromString()
Class c = NSClassFromString(@"ClassName"); id obj = [[c alloc] init];