Forked from nvkiet/[Swift] Switch-RootViewController
Last active
April 26, 2016 16:21
-
-
Save davidlondono/8a4696140fafc8d8522df497737fe80a to your computer and use it in GitHub Desktop.
Switch root view controller
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
func switchRootViewController(rootViewController: UIViewController, animated: Bool, completion: (() -> Void)? = nil) { | |
guard let window = window else { return } | |
if animated { | |
UIView.transitionWithView(window, duration: 0.5, options: .TransitionCrossDissolve, animations: { | |
let oldState: Bool = UIView.areAnimationsEnabled() | |
UIView.setAnimationsEnabled(false) | |
window.rootViewController = rootViewController | |
UIView.setAnimationsEnabled(oldState) | |
}, completion: { (finished: Bool) -> () in | |
completion?() | |
}) | |
} else { | |
window.rootViewController = rootViewController | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment