如何在Xamarin中动态打开新的UIView?

时间:2015-04-13 09:52:27

标签: ios xamarin

我想在不使用任何故事板和xib文件的情况下动态打开新的UIViewController。
我的应用程序中有按钮,它会启动新窗口。这个窗口我将在我的代码中动态填充。

试试这个:

UIApplication.SharedApplication.KeyWindow.RootViewController.PresentViewController(new MyCustomView(), false, null)

MyCustomView()是否正确?好像有点奇怪...

1 个答案:

答案 0 :(得分:0)

从按钮点击处理程序中的呈现viewcontroller中调用PresentViewController(...)。确保实际实例化视图控制器而不是视图。