移动到segmentedview,第二个选项卡可见

时间:2015-05-11 19:32:36

标签: ios iphone swift

我正在尝试导航到包含2个标签/视图的分段视图,并且第二个标签/视图必须可见。 使用下面的代码,我可以移动到分段视图,但第一个选项卡是可见的。我也尝试了Segue,但是我的页脚和标题中的导航消失了。

let mainViewController: UITabBarController = self.storyboard?.instantiateViewControllerWithIdentifier("MainController") as UITabBarController;
        mainViewController.selectedIndex = 1;
        self.presentViewController(mainViewController, animated: false, completion: nil)

1 个答案:

答案 0 :(得分:0)

您的代码不正确。试试这个:

override func viewDidAppear(animated: Bool) {         
    self.tabBarController?.selectedIndex = 1     
}