Skip to content

Instantly share code, notes, and snippets.

@joelmarquez90
Last active December 27, 2017 22:25
Show Gist options
  • Save joelmarquez90/e049f013273e2e69c395978a4b5a6360 to your computer and use it in GitHub Desktop.
Save joelmarquez90/e049f013273e2e69c395978a4b5a6360 to your computer and use it in GitHub Desktop.
class NavigationManager {
static let sharedInstance = NavigationManager()
private init() {}
public func start() {
window = UIWindow(frame: UIScreen.main.bounds)
window?.rootViewController = ViewController()
window?.makeKeyAndVisible()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment