Navigate Particular ViewController from appdelegate in NavigationViewController stack
When you are in AppDelegate you want to navigate to the particular view in Navigation stack.You will use the window as rootViewController then navigate to the particular ViewController using the navigation stack.
Code:
var rootViewController = self.window!.rootViewController as! UINavigationController
rootViewController.pushViewController(ViewController, animated: true)
Comments
Post a Comment