I have ViewcontrollerA
, which is a view made in storyboard
.
In this view, i have a UIView
that i have added in storyboard
and create an outlet to it called containerView
.
I wants to add some other viewControllerB
(also made in storyboard
) to the container.
Tried that :
//add to container a new view from storyboard,with id called serviceView
UIViewController *sv = [self.storyboard instantiateViewControllerWithIdentifier:@"ServiceView"];
[self.containerView addSubview:sv.view];
and got a crash.
How can i do that ?
Thanks .