隐藏情节提要的切换

时间:2020-02-03 17:45:31

标签: ios swift uiviewcontroller uistoryboard uipresentingcontroller

在我的应用程序中,我有2个故事板:入职主要。用户首次打开应用程序时-会显示入职故事板。之后,他按下一个按钮,然后我向他显示 Main 故事板,其代码如下:

let storyboard = UIStoryboard(name: "Shop", bundle: nil)
let navigationVc = storyboard.instantiateViewController(withIdentifier: "ShopScreens") as UIViewController
navigationVc.modalPresentationStyle = UIModalPresentationStyle.overCurrentContext
self.present(navigationVc, animated: false, completion: nil)

当用户切换情节提要时,我想制作自定义动画。这样做-我已经创建了一个简单的视图,并在以下所有内容中进行了展示:

UIApplication.shared.keyWindow?.addSubview(self.containerViewForAnimatedView)

此视图运行良好,但是仅就一个Storyboard而言,它涵盖了应用程序更改屏幕时的所有内容。

但是当我尝试切换情节提要时-新显示的情节提要涵盖了该视图。

我还尝试过以这种方式呈现视图并将其呈现在前面:

let appDelegate = UIApplication.shared.delegate as! AppDelegate
appDelegate.window?.addSubview(self.containerViewForAnimatedView)

但是那也不行。

如何通过在过渡期间呈现自定义创建的视图来隐藏情节提要的切换? 感谢您的帮助。

1 个答案:

答案 0 :(得分:1)

只是玩一些它,没有动画或任何特别的东西,但这将为您提供想要的流程:

class ViewController: UIViewController {
    let viiew = UIView.init(frame: UIScreen.main.bounds)

    override func viewDidLoad() {
        super.viewDidLoad()
        view.backgroundColor = .red

        DispatchQueue.main.asyncAfter(deadline: .now() + 3) {
            self.viiew.backgroundColor = .blue
            UIApplication.shared.keyWindowInConnectedScenes?.resignKey()
            UIApplication.shared.keyWindowInConnectedScenes?.addSubview(self.viiew)
            self.viiew.layer.zPosition = 1000
        }

        DispatchQueue.main.asyncAfter(deadline: .now() + 4) {
            let vc = ViewController2()
            UIApplication.shared.keyWindowInConnectedScenes?.rootViewController = vc
            DispatchQueue.main.asyncAfter(deadline: .now() + 4) {
                self.viiew.removeFromSuperview()
            }
        }
    }


}

class ViewController2: UIViewController {

    override func viewDidLoad() {
        super.viewDidLoad()
        view.backgroundColor = .green


    }
}

extension UIApplication {

    var keyWindowInConnectedScenes: UIWindow? {
        return windows.first(where: { $0.isKeyWindow })
    }

}