如何在Xamarin.iOS中重定向页面

时间:2017-04-07 08:00:20

标签: xamarin.ios

您好我试图浏览Xamarin.iOS中的页面by code behind
我怎么能这样做?

我在网上搜索过,无法找到解决方案。

这是我到目前为止所尝试的,但这段代码不起作用:

var storyboard = UIStoryboard.FromName("Main",null);
var nextViewController = storyboard.InstantiateViewController("Page2") as Page2;
PresentViewController(nextViewController, true, null);

1 个答案:

答案 0 :(得分:2)

试试这个:

var nextViewController = UIStoryboard.FromName("Main",NSBundle.MainBundle).InstantiateViewController("Page2") as Page2;

ShowViewController(nextViewController, this);