Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a modal storyboard scene that I want to be accessible to all my other scenes. Creating a modal segue to it from every scene on my storyboard creates a big mess of strings going everywhere. Is there a way that I leave off the segues and call the scene programmatically instead?

Basically I want to do something like this:

  MyNewViewController *myNewVC = [[MyNewViewController alloc] init];
  [self presentModalViewController:myNewVC animated:YES];

except instead of creating and pushing a view controller class, I want to do a modal transition to an "isolated" (not connected with a segue) storyboard scene.

share|improve this question

3 Answers

up vote 14 down vote accepted

Yes you can. Do something like this to get access to the VC, then just Modal Push it:

UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"MainStoryboard_iPhone" bundle:nil];
    MyNewViewController *myVC = (MyNewViewController *)[storyboard instantiateViewControllerWithIdentifier:@"myViewCont"];
share|improve this answer
Does this push the scene as a modal view (like it would with a modal segue)? – yourfriendzak May 9 '12 at 19:58
It depends how you present it. Use [self presentModalViewController:myVC animated:YES]; and it will – Darren May 9 '12 at 19:59
Thank you. One thing I'm confused about...what happens to myVC right after the 2nd line but before the "presentModalViewController:myVC" line? Does it just sit in the background hidden? – yourfriendzak May 9 '12 at 20:17
It's just allocated and initiated. I'm not too sure if 'ViewDidLoad' is called at that point, you'd have to log it and see. Before presenting it you can assign things to variables you have in that VC. – Darren May 9 '12 at 20:35
How can I do the same thing, but instead of a modal scene I want to call a scene thats nested inside a navigation controller? – yourfriendzak May 9 '12 at 23:07
show 1 more comment

Note: the method presentModalViewController:animated is deprecated in iOS 6.

The new code should read:

NSString * storyboardName = @"MainStoryboard_iPhone";
NSString * viewControllerID = @"ViewID";
UIStoryboard * storyboard = [UIStoryboard storyboardWithName:storyboardName bundle:nil];
MyViewController * controller = (MyViewController *)[storyboard instantiateViewControllerWithIdentifier:viewControllerID];
[self presentViewController:controller animated:YES completion:nil];
share|improve this answer

In the storyboard give your view controller an identifier (under the Attributes Inspector) then use the following code to bring that view forward.

UIStoryboard *mainStoryboard = [UIStoryboard storyboardWithName:@"STORYBOARDNAME" bundle:nil];
UIViewController *vc = [mainStoryboard instantiateViewControllerWithIdentifier:@"VIEWCONTROLLERIDENTIFIER"];
[self presentModalViewController:vc animated:YES];
share|improve this answer
This doesn't seem to work when called from within an AppDelegate. – radven May 10 '12 at 18:53
@radven ViewControllers and their classes aren't callable from the AppDelegate (I think)... – RazorSharp Sep 7 '12 at 1:16
@RazorSharp really? I call into VCs all the time in the AppDelegate (as needed). For example (off the tope of my head), when setting up a root tab bar controller and I need to initialize the view controllers in the tabs. Now, to get things to display you need to work within the App Delegate's presenting of root view controllers/storyboard etc. – chadbag Feb 6 at 1:02

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.