Is it possible to have a ViewController use one nib, while my ViewController's subclass points to another?
What I am trying to do:
I have an application that has a main menu that will take you to any section. Within the section you are in, you can pull down a different sub-section menu, which will take you to different pages.
I would like to have all the sub-section menu stuff be handled by a base ViewController class that each sub-section page would inherit from. That way I only need to write code to handle showing the sub-section menu in the base class, and all sub-section pages will automatically have it.
Though I don't know if it is possible to instantiate a ViewController with one nib, and tell it's base class to hookup to a different one.
Any help or tips appreciated :)
Thank you.