I'm launching a view controller in my app with this code :
MyViewController *myViewController = [[MyViewController alloc] init];
[self.navigationController pushViewController:myViewController animated:YES];
However I don't know what design file my viewcontroller use to add a simple label to it. I don't know if it uses any design file(story board). I have story board file and I have assigned its class to my controller but does the above code launch the controller with the story board?
Thanks