I took 2 UIViewController
HomeView and ViewMyStuff in Storyboard.
I am adding ViewMyStuff Controller in HomeView. In HomeView's ViewDidLoad
, written below in my code.
- (void)viewDidLoad
{
ViewMyStuff *vwMyStuff = [self.storyboard instantiateViewControllerWithIdentifier:@"viewreportvc"];
[self addChildViewController: vwMyStuff];
[vwMyStuff didMoveToParentViewController:self];
}
vwMyStuff controller is not added in HomeViewController
. Is there anything I missing? Please help
Thanks.