如何在 xamarin.ios 中的页面之间进行导航?

Posted

技术标签:

【中文标题】如何在 xamarin.ios 中的页面之间进行导航?【英文标题】:how to make navigation between pages in xamarin.ios? 【发布时间】:2015-01-14 07:42:17 【问题描述】:

我使用下面的代码导致了一个错误,即 InstantiateInitialViewController 方法没有重载采用 '1' 参数

EfficientBilling365ViewController  abc=this.Storyboard.InstantiateInitialCiewController(EbViewController) as EfficientBillingViewController;
if(abc!=null)

this.NavigationController.PushViewController(abc,true);

谁能帮帮我?

【问题讨论】:

【参考方案1】:

首先从 AppDelegate.cs 创建视图控制器,然后将其封装到 NavigationController 中,如下所示:

public override bool FinishedLaunching (UIApplication app, NSDictionary options)
        
MyViewController myViewController = new MyViewController ();
UINavigationController navContr = new UINavigationController (myViewController);
window.RootViewController = navContr;
//Other things

之后你的 myViewController 是第一页,当你做某事时你会进入新页面,所以在myViewContoller 你会做这样的事情:

NavigationController.PushViewController (newViewController, true);

希望这会有所帮助,不需要故事板,我发现这是在页面之间导航的最简单方法。

【讨论】:

@Hustler 有帮助吗?你还需要别的吗? 这个用户似乎只对快速获得答案感兴趣。他不在乎那个回答。 +1 来自我。查看他之前的所有问题,例如:***.com/a/28040118/993547。【参考方案2】:

我认为这是解决方案!

UIStoryboard Storyboard = UIStoryboard.FromName("Main", null);

var contentController =(product_co)AppDelegate.Storyboard.InstantiateViewController("product_co");

this.NavigationController.PushViewController(contentController, true);

【讨论】:

是什么让你这么想?

以上是关于如何在 xamarin.ios 中的页面之间进行导航?的主要内容,如果未能解决你的问题,请参考以下文章

在 xamarin.ios 中的视图控制器之间传递数据

如何使用UItextfield在xamarin IOS中只进行前进和后退文本框?

9如何在Xamarin中进行iOS真机调试和发布

如何加载存在于 Xamarin.iOS 中的共享库项目中的第二个 Storyboard

如何在运行时折叠 Xamarin.iOS 中的视图?

如何从 Xamarin iOS 中选择和打开可用的导航应用程序?