0

Hi I am new to IOS development in Xamarin. I want to know if it is possible to load one storyboard from another. Because I want two separate files, each with their own navigation controller and other view controllers. Is this possible, if so how do I do it? I want to load one .stotyboard file from another. This How to programmatically load another viewController from a ViewController in MonoTouch did not work for me.

Community
  • 1
  • 1
spmoolman
  • 403
  • 8
  • 20
  • 1
    Yes you can load a different storyboard very much like the native, except the syntax. Have a look at [this answer on SO](http://stackoverflow.com/a/10575741/1155650) or this [Xamarin Forum Question](https://forums.xamarin.com/discussion/1255/calling-a-storyboard-from-a-button-click-or-table-view-newbie) – Rohit Vipin Mathews Sep 14 '15 at 13:39
  • possible duplicate of [How to programmatically load another viewController from a ViewController in MonoTouch](http://stackoverflow.com/questions/10575124/how-to-programmatically-load-another-viewcontroller-from-a-viewcontroller-in-mon) – Rohit Vipin Mathews Sep 14 '15 at 13:41

1 Answers1

0

Yes, you can navigate to another Storyboard like this:

UIStoryboard storyboard = UIStoryboard.FromName ("SecondStoryboard", null);
UIViewController controller = (UIViewController)storyboard.InstantiateViewController ("SecondVC");
controller.ModalTransitionStyle = UIModalTransitionStyle.CrossDissolve;
this.PresentViewController (controller, true, null);
Daniel Benedykt
  • 6,496
  • 12
  • 51
  • 73