Open View Controller programmatically and not using a Seque

ios, ios6, objective-c

Solution

I have finally got it. Thanks for everyone's help:

ViewControllerMonitorMenu *monitorMenuViewController = [self.storyboard instantiateViewControllerWithIdentifier:@"ViewControllerMonitorMenu"];
[self presentViewController:monitorMenuViewController animated:NO completion:nil];

Problem

I know that this is a really simple question but I am getting nowhere. I have a storyboard and all the view controllers are opened using segues which is fine, but I would like to open one of them using code when the button is pressed. What is the line for opening the view controller called `ViewControllerMonitorMenu` when the `testSliders` button is pressed: ``` - (IBAction)testSliders:(id)sender { } ```

Original source