Let's say I have:
ThisClass *castHere = [[ThisClass alloc] init];
But I effectively want:
ThisClassChosenAtRuntime *castHere = [[ThisClassChosenAtRuntime alloc] init];
I'm sure there is some smarter way to go about this. But this is the result I'm after. I already have castHere
subjected to setValue forKey
statements. But I want to dynamically setup *castHere
.