Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

consider the following scenario: I have a storyboard-based app. I add a ViewController object to the storyboard, add the class files for this ViewController into the project and specify the name of the new class in the IB identity inspector. Now how am I going to refer to this ViewController programmatically from the AppDelegate? I've made a variable with the relevant class and turned it into an IBOutlet property, but I don't see any way of being able to refer to the new ViewController in code - any attempt to ctrl-drag a connection doesn't work.

i.e. within the AppDelegate I can get to the base ViewController like this

(MyViewController*) self.window.rootViewController

but how about any other ViewController contained within the storyboard?

share|improve this question

1 Answer

up vote 70 down vote accepted

Have a look at the documentation for -[UIStoryboard instantiateViewControllerWithIdentifier:]. This allows you to instantiate a view controller from your storyboard using the identifier that you set in the IB Attributes Inspector:

enter image description here

EDITED to add example code:

UIStoryboard *mainStoryboard = [UIStoryboard storyboardWithName:@"MainStoryboard"
                                                         bundle: nil];

MyViewController *controller = (MyViewController*)[mainStoryboard 
                    instantiateViewControllerWithIdentifier: @"<Controller ID>"];
share|improve this answer
Hi Robin, thanks for that! I looked at this doc but got the words instantiate and initialise mixed up... this gets us there (after following your instruction:) (damn the lack of code formatting in replies...) UIStoryboard* mainStoryboard = [UIStoryboard storyboardWithName: @"MainStoryboard" bundle: nil]; MyViewController* thisController = (MyViewController*) [mainStoryboard instantiateViewControllerWithIdentifier: @"myvc"]; – Matthias D Nov 18 '11 at 20:16
I've added your example code to the answer with formatting for anyone who is looking at this. – Robin Summerhill Nov 18 '11 at 21:39
9  
if you're making a universal app be sure to use MainStoryboard_iPhone/MainStoryboard_iPad otherwise you'll get a crash. – roocell Dec 18 '11 at 20:42
3  
@bashan From the documentation for instantiateViewControllerWithIdentifier: 'This method creates a new instance of the initial view controller each time you call it.' So if you use it to instantiate your main view controller then you need to stash a reference to it to use later rather than call the method again. It probably make sense to create a property on your AppDelegate to hold the reference. – Robin Summerhill May 28 '12 at 6:53
2  
From within the delegate you can access the storyboard instance loaded by your info.plist like this: [[[self window] rootViewController] storyboard] According to the docs this will return the "storyboard from which the view controller originated." (or nil if it didn't come from a storyboard). From that UIStoryboard* you can use the instantiate calls that @RobinSummerhill mentioned. Note that Storyboards instantiate new instances of your viewControllers (scenes) as they are needed and doesn't re-use those that were previously viewed. – Tad Bumcrot Jul 8 '12 at 12:16
show 5 more comments

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.