How can I create a segue relationship? I would like to create a subclass of UIViewController similar to UITabBarController or UINavigationController , where, using Interface Builder, I can control + drag and drop from a view controller to another view controller. I tried
@property (nonatomic) IBOutlet NSArray *viewControllers; @property (nonatomic) IBOutlet UIStoryboardSegue *root;
and also tried to drag the Container View into my controller. When I do this, I can drag the views from one controller to another, but I can not drag it to multiple controllers. I also cannot find the documentation for the UIContainerView object.
Kevin source share