在我的 iOS 应用程序中,在viewController中,我尝试在Tab Bar Controller中打开特定视图。
我使用 performSegue。
首先,我尝试直接导航到特定视图,但在这种情况下,标签栏消失了
所以我尝试导航到 tabViewController,这导致我进入默认视图(第一个)
知道如何导航到 TabBarController 中的特定视图吗?
我使用的 performSegue:
self.performSegue(withIdentifier: "goToMain", sender: self)
//"goToMain" is my indentipier to the storyboard Segue
我用 swift 4