Let say I have a storyboard that contains UINavigationController
as initial view controller. Its root view controller is subclass of UITableViewController
, which is BasicViewController
. It has IBAction
which is connected to right navigation button of the navigation bar
From there I would like to use the storyboard as a template for other views without having to create additional storyboards. Say these views will have exactly the same interface but with root view controller of class SpecificViewController1
and SpecificViewController2
which are subclasses of BasicViewController
.
Those 2 view controllers would have the same functionality and interface except for the IBAction
method.
It would be like the following:
@interface BasicViewController : UITableViewController
@interface SpecificViewController1 : BasicViewController
@interface SpecificViewController2 : BasicViewController
Can I do something like that?
Can I just instantiate the storyboard of BasicViewController
but have root view controller to subclass SpecificViewController1
and SpecificViewController2
?
Thanks.