我正在与UISplitViewController
合作。我有UISplitViewController
,其中包含UITabBarController
。因此,我想在整个应用程序的所有屏幕上显示标签栏(甚至是iPhone的UISplitViewController
的详细屏幕)。请查看方法:
答案 0 :(得分:0)
使用segue从一个控制器移动到另一个控制器或通过导航移动,以便在下一个控制器中显示标签栏 就像您要从A移到B一样,请设置控制器的拖板ID(即“ SecondVc”)
let storyboard = UIStoryboard(name: "Main", bundle: nil)
let vc = storyboard.instantiateViewController(withIdentifier: "SecondVc")
self.navigationController?.pushViewController(vc, animated: true)
或仅使用情节提要建立连接