I have two view controllers. I have navigated from one view to another view by press the button to using below code.
*let secondViewController = self.storyb
Here is the code to check it.
if let viewControllers = navigationController?.viewControllers { for viewController in viewControllers { // some process if viewController.isKindOfClass(ViewControllerClassName) { println("yes it is") } } }