I am building my first Xamarin (C #) application on iOS and I am having problems navigating the storyboard. All my dashboards, navigation and browsing are in the storyboard. In almost every view controller, I added a menu (Facebook and YouTube style) that slides to the side. From there, it should be possible to return to the first viewcontroller (home) in the storyboard. Since menus are active in almost every controller in my application, I do not use segues (this would be a mess in my storyboard).
So I would like to use PresentViewController (), but when I do this, the page turns black and shows nothing.
homeViewController home = new homeViewController();
PresentViewController(home, true, null);
Does it turn black because PresentViewController expects an XIB file from homeViewController? I want the user to stay in the storyboard, so he can continue by going through my application.
Does anyone have any ideas?
Thanks in advance.
source
share