我可以使用没有 segues 的导航 (1) 但我想使用它 (2)。
执行 segue 并返回会使我的应用程序变慢!因为当我向后导航时它不会处理目标视图。你如何以正确的方式使用这个 segues ?
/*1) This code ok! But what about segues */
if(_tabbarController==null)
_tabbarController = (UITabBarController)this.Storyboard
.InstantiateViewController ("MainTabbarController");
this.NavigationController.PushViewController (_tabbarController,true);
/*2) If I run this code I get a new instance of UITabbar */
this.PerformSegue("SegueShowDetail",this);