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.

I have an action that I need to have linked to a certain view in the Storyboard. The code I currently have below links to the Storyboard's first view. How would I link it to a certain view controller within the Storyboard? FYI - this link is coming from a xib file that's not part of the Storyboard and it works fine. thanks

  - (IBAction)continueWithoutLoginButtonTouchHandler:(id)sender 
    {

        UIStoryboard* storyboard = [UIStoryboard storyboardWithName:@"MainStoryboard" bundle:nil];
        UIViewController* initialHelpView = [storyboard instantiateInitialViewController];

        initialHelpView.modalPresentationStyle = UIModalPresentationFormSheet;
        [self presentModalViewController:initialHelpView animated:YES];
    }

I'm wondering if the method: instantiateViewControllerWithIdentifier: and then identifying one of the views in the storyboard would work.

 - (IBAction)continueWithoutLoginButtonTouchHandler:(id)sender 
{

    UIStoryboard* storyboard = [UIStoryboard storyboardWithName:@"MainStoryboard" bundle:nil];
   // UIViewController* viewController = [storyboard instantiateInitialViewController];

    UIViewController *viewController = [storyboard instantiateViewControllerWithIdentifier:@"RotationVC"];

    viewController.modalPresentationStyle = UIModalPresentationFormSheet;
    [self presentModalViewController:viewController animated:YES];
}

thanks for any help

share|improve this question

1 Answer

up vote 0 down vote accepted

use the method: instantiateViewControllerWithIdentifier: and then identifying one of the views in the storyboard:

 - (IBAction)continueWithoutLoginButtonTouchHandler:(id)sender 
{

    UIStoryboard* storyboard = [UIStoryboard storyboardWithName:@"MainStoryboard" bundle:nil];
   // UIViewController* viewController = [storyboard instantiateInitialViewController];

    UIViewController *viewController = [storyboard instantiateViewControllerWithIdentifier:@"RotationVC"];

    viewController.modalPresentationStyle = UIModalPresentationFormSheet;
    [self presentModalViewController:viewController animated:YES];
}
share|improve this answer

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.