I followed the instructions from Xamarin University (unfortunately they've disabled comments so I can't discuss it with anyone)
the first viewcontroller has a storyboard id of "viewController" and the second one I'm trying to switch to has a storyboard id of "AndraViewController".
partial void Knapp1_TouchUpInside(UIButton sender)
{
UIStoryboard storyboard = this.Storyboard;
AndraViewController viewController = (AndraViewController)
storyboard.InstantiateViewController("AndraViewController");
this.PresentViewController(viewController, true, null);
}
When I press the button nothing happens, I don't receive an error message or anything.