简体   繁体   中英

Swift 4 - How to set and show a new root view controller from current view controller

Struggling a couple of days with this...

I have set a rootVC from AppDelegate in didFinishLaunchingWithOptions and this is working fine.

Now from that rootVC I want that, if some condition is met, eg. if x=y a new rootVC is set and displayed.

I stack overflowed long long time, found different solutions, but none is working.

The below is compiling, and executing, I checked with breakpoint, but nothing shows up in the app.

animated    Bool    false   
self    Regional2.IrelandViewController 0x0000000102b0ff30
newViewController   Regional2.IrelandMain   0x0000000102d0d300
customViewControllersArray  NSArray 0x00000001c000b620
ObjectiveC.NSObject NSObject    
Exception State Registers       
far unsigned long   0x00000001b0a7ba78
esr unsigned int    0x92000007
exception   unsigned int    0x00000000
Floating Point Registers        
General Purpose Registers       

and the piece of the code . . .

override func viewDidAppear(_ animated: Bool) {
    super.viewDidAppear(animated)

    let newViewController = self.storyboard?.instantiateViewController(withIdentifier: "IrelandMain") as! IrelandMain

    let customViewControllersArray : NSArray = [newViewController]

    self.navigationController?.viewControllers = customViewControllersArray as! [UIViewController]
    self.navigationController?.pushViewController(newViewController, animated: true)

}

Please notice that navigationController show produces the same output. Nothing changes.

That code works for me. It simply replaces the whole UIWindow.

When I tried to only replace the rootViewController it did it but it created another one (so I had two loaded viewControllers in the view hierarchy)

if let appDelegate = UIApplication.shared.delegate as? AppDelegate {
    // If we only reloads the rootViewController than the main window has 2 subviews
    // The older cannot be removed and the new can be removed.
    // The workaround I found is to replace the whole UIWindow with new one
    let root = UIStoryboard(name: "Main", bundle: Bundle.main).instantiateInitialViewController()
    let newWindow = UIWindow()
    appDelegate.replaceWindow(newWindow)
    newWindow.rootViewController = root
}

And in your AppDelegate

func replaceWindow(_ newWindow: UIWindow) {
    if let oldWindow = window {
        newWindow.frame = oldWindow.frame
        newWindow.windowLevel = oldWindow.windowLevel
        newWindow.screen = oldWindow.screen
        newWindow.isHidden = false
        window = newWindow
        oldWindow.removeFromSuperview()
    }
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM