Hello,
How do you find out what something is called when IB creates the object specifically, and you've only provided the class files?
For instance, I've important this custom class called MyController, and I don't actually instance it anywhere. I've dragged an object into the document window in IB and set its type to MyController, and it runs fine at runtime and does everything a controller should. Nowhere however do I do something like this:
So, I don't really know what the controller object is called at runtime. Is there any way to find out?
Cheers,
Tom
How do you find out what something is called when IB creates the object specifically, and you've only provided the class files?
For instance, I've important this custom class called MyController, and I don't actually instance it anywhere. I've dragged an object into the document window in IB and set its type to MyController, and it runs fine at runtime and does everything a controller should. Nowhere however do I do something like this:
Code:
MyController *newController;
So, I don't really know what the controller object is called at runtime. Is there any way to find out?
Cheers,
Tom