Xamarin.ios 上的新页面

New Page on Xamarin.ios

我是 Xamarin 的新手。

我已经为我的应用程序创建了一个登录页面,但我需要一个新页面用作主菜单。新页面应该可以在 Xcode 上编辑以设计 UI。它还需要一个 ViewController.cs 到 运行 里面的一些代码。

有没有什么方法可以创建满足我刚才提到的要求的页面?

我通过在 Xcode 中创建一个新的 ViewControl 解决了这个问题,然后我在身份检查器中指定它是 class 并且我还从同一个菜单中给了它一个故事板 ID。

然后我写了下面的代码来显示新的ViewControl。

        MainViewController mainViewController = this.Storyboard.InstantiateViewController("MainViewController") as MainViewController;
        mainViewController.ModalPresentationStyle = UIModalPresentationStyle.FullScreen;
        PresentViewController(mainViewController, true, null);

MainViewController 是我在身份检查器中提到的 class,引号内的第二个 MainViewController 是我的故事板 ID。