I have an AnimalViewController. It it a base view controller. I also have the AnimalViewController Scene in UIStoryBoard.
I have a question about inheritance.
@interface BearViewController : AnimalViewController
@interface LionViewController : AnimalViewController
Is it possible to instantiate BearViewController with AnimalViewController Scene?
PS BearViewController and LionViewController have the same interface as AnimalViewController.