从View Controller显示拆分视图控制器

时间:2017-01-27 04:35:52

标签: ios swift3 uisplitviewcontroller

我只需要一个关于拆分视图控制器的帮助。在我的应用程序中,我需要从视图控制器(iPad)显示拆分视图控制器。据我所知,没有办法推动拆分视图控制器。我试过喜欢设置为根视图控制器它的工作但是,我必须回到以前的视图控制器是问题。我怎么能实现呢?任何解决方案将不胜感激。

    let vc = self.storyboard!.instantiateViewControllerWithIdentifier("SplitViewController") as! SplitViewController



    if vc.splitViewController?.collapsed == true {
        vc.modalPresentationStyle = UIModalPresentationStyle.FormSheet
        self.presentViewController(vc, animated: true, completion: nil)
    }
    else {
        // UIApplication.sharedApplication().windows[0].rootViewController = vc

    }

0 个答案:

没有答案